Mimer Data Provider

MimerDataReader.Item Property (String)

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.

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

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

[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

name
The column name.

Property Value

The value of the specified column in its native format.

Implements

IDataRecord.Item

Remarks

The column name lookup performs a case-sensitive lookup first. If it fails, a second case-insensitive search is made.

See Also

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