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 name.
Namespace: System.Data.SqlServerCe
Assembly: System.Data.SqlServerCe (in System.Data.SqlServerCe.dll)
Syntax
'Declaration
Public Overrides ReadOnly Default Property Item ( _
name As String _
) As Object
Get
'Usage
Dim instance As SqlCeDataReader
Dim name As String
Dim value As Object
value = instance(name)
public override Object this[
string name
] { get; }
public:
virtual property Object^ default[String^ name] {
Object^ get (String^ name) override;
}
abstract Item : Object
override Item : Object
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- name
Type: System.String
The column name.
Property Value
Type: System.Object
The value of the specified column in its native format.
Implements
Remarks
A case-sensitive lookup is performed first. If it fails, a second case-insensitive search is made.
This method is kana-width insensitive.