Class DataSetContainer
Object encapsulating DataSet objects to be accessible via macro engine.
public class DataSetContainer : IDataContainer, ISimpleDataContainer
- Inheritance
-
objectDataSetContainer
- Implements
- Extension Methods
Constructors
DataSetContainer(DataSet)
Creates new instance of DataSetContainer.
public DataSetContainer(DataSet ds)
Parameters
ds
DataSetDataSet object to be encapsulated
Properties
ColumnNames
Column names.
public List<string> ColumnNames { get; }
Property Value
- List<string>
DataSet
Gets the encapsulated DataSet.
public DataSet DataSet { get; }
Property Value
- DataSet
this[string]
Gets the value of the column, setter is not implemented.
public object this[string columnName] { get; set; }
Parameters
columnName
stringColumn name
Property Value
- object
Methods
ContainsColumn(string)
Returns true if the object contains specified column.
public bool ContainsColumn(string columnName)
Parameters
columnName
stringColumn name
Returns
- bool
GetValue(string)
Gets or sets the value of the column.
public object GetValue(string columnName)
Parameters
columnName
stringColumn name
Returns
- object
SetValue(string, object)
Not implemented.
public bool SetValue(string columnName, object value)
Parameters
columnName
stringColumn name
value
objectNew value
Returns
- bool
TryGetValue(string, out object)
Returns value of column.
public bool TryGetValue(string columnName, out object value)
Parameters
columnName
stringColumn name
value
objectReturns the value
Returns
- bool
Returns true if the operation was successful (the value was present)