[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.
The value of the specified column in its native format.
The column name lookup performs a case-sensitive lookup first. If it fails, a second case-insensitive search is made.
MimerDataReader Class | Mimer.Data.Client Namespace | MimerDataReader.Item Overload List