Mimer Data Provider

MimerDataReader.Item Property (Int32)

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.

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

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

[JScript] In JScript, you can use the default indexed properties defined by a type, but you cannot explicitly define your own. However, specifying the expando attribute on a class automatically provides a default indexed property whose type is Object and whose index type is String.

Parameters

i
The zero-based column ordinal position.

Property Value

The value of the specified column in its native format.

Implements

IDataRecord.Item

See Also

MimerDataReader Class | Mimer.Data.Client Namespace | MimerDataReader.Item Overload List