Gets the value of the specified field (column) as an Object.
Syntax
'Declaration
Public Overloads Overrides NotOverridable ReadOnly Property Item( _
ByVal As Integer _
) As Object
'Usage
Dim instance As TdDataReader
Dim ordinal As Integer
Dim value As Object
value = instance.Item(ordinal)
public override object Item(
int
) {get;}
public:
property Object^ Item {
Object^ get(int ) override;
}
Parameters
- ordinal
- Column ordinal (see TdDataReader.GetOrdinal).
Property Value
The value of the specified field represented as a System.Object type.
Exceptions
Requirements
Product | Versions | Platforms |
.NET | 2.1, 3.1, 6 | Windows, Linux, MacOS |
.NET Framework | 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8 | Windows |
.NET Standard | 2.0 | Windows, Linux, MacOS |
See Also