Interface ISimpleDataContainer
Simple data container interface (does not provide any information about the columns).
public interface ISimpleDataContainer
- Extension Methods
Properties
this[string]
Gets or sets the value of the column.
object this[string columnName] { get; set; }
Parameters
columnName
stringColumn name
Property Value
- object
Methods
GetValue(string)
Returns value of column.
object GetValue(string columnName)
Parameters
columnName
stringColumn name
Returns
- object
SetValue(string, object)
Sets value of column.
bool SetValue(string columnName, object value)
Parameters
columnName
stringColumn name
value
objectColumn value
Returns
- bool