Mimer Data Provider

MimerDataReader.Item Property

Gets the value of the specified column in its native format given the column ordinal.

In C#, this property is the indexer for the MimerDataReader class.

Overload List

Gets the value of the specified column in its native format given the column ordinal. In C#, this property is the indexer for the MimerDataReader class.

[Visual Basic] Public Default Property ReadOnly Item(ByVal Integer) As Object _     Implements IDataRecord.Item
[C#] public object this[int] { get; }
[C++] public: __property Object* get_Item(int);

Gets the value of the specified column in its native format given the column name. In C#, this property is the indexer for the MimerDataReader class.

[Visual Basic] Public Default Property ReadOnly Item(ByVal String) As Object _     Implements IDataRecord.Item
[C#] public object this[string] { get; }
[C++] public: __property Object* get_Item(String*);

See Also

MimerDataReader Class | Mimer.Data.Client Namespace