Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the value of the specified column in its native format given the column ordinal.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Syntax
'Declaration
Public Overrides ReadOnly Default Property Item ( _
index As Integer _
) As Object
Get
'Usage
Dim instance As SqlCeDataReader
Dim index As Integer
Dim value As Object
value = instance(index)
public override Object this[
int index
] { get; }
public:
virtual property Object^ default[int index] {
Object^ get (int index) override;
}
abstract Item : Object
override Item : Object
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- index
Type: System. . :: . .Int32
The column ordinal.
Property Value
Type: System. . :: . .Object
The value of the specified column in its native format.
Implements
IDataRecord. . :: . .Item[ ( [ ( Int32] ) ] )