Interface IDataObject
Assembly: fcSDK.dll
Syntax
public interface IDataObject
Properties
ColumnMap
Declaration
IDictionary ColumnMap { get; }
Property Value
Type |
Description |
System.Collections.IDictionary |
|
FieldValues
Declaration
object[] FieldValues { get; }
Property Value
Type |
Description |
System.Object[] |
|
UniqueID
Declaration
Property Value
Type |
Description |
System.Object |
|
Methods
ContainsColumn(String)
Declaration
bool ContainsColumn(string columnName)
Parameters
Type |
Name |
Description |
System.String |
columnName |
|
Returns
Type |
Description |
System.Boolean |
|
GetFieldValue(Int32)
Declaration
object GetFieldValue(int ordinal)
Parameters
Type |
Name |
Description |
System.Int32 |
ordinal |
|
Returns
Type |
Description |
System.Object |
|
GetFieldValue(String)
Declaration
object GetFieldValue(string colName)
Parameters
Type |
Name |
Description |
System.String |
colName |
|
Returns
Type |
Description |
System.Object |
|
GetSafeBooleanFieldValue(String)
Declaration
bool GetSafeBooleanFieldValue(string columnName)
Parameters
Type |
Name |
Description |
System.String |
columnName |
|
Returns
Type |
Description |
System.Boolean |
|
GetSafeDoubleFieldValue(String)
Declaration
double GetSafeDoubleFieldValue(string columnName)
Parameters
Type |
Name |
Description |
System.String |
columnName |
|
Returns
Type |
Description |
System.Double |
|
GetSafeInt32FieldValue(String)
Declaration
int GetSafeInt32FieldValue(string colName)
Parameters
Type |
Name |
Description |
System.String |
colName |
|
Returns
Type |
Description |
System.Int32 |
|
GetSafeStringFieldValue(String)
Declaration
string GetSafeStringFieldValue(string colName)
Parameters
Type |
Name |
Description |
System.String |
colName |
|
Returns
Type |
Description |
System.String |
|