dotConnect for Oracle Documentation
Devart.Data.Oracle Namespace / OracleArrayDataReader Class / Item Property / Item(Int32) Property
Zero-based ordinal of the OBJECT TYPE property. Ignored when the array consists of elements with type other than OBJECT TYPE.

In This Topic
    Item(Int32) Property
    In This Topic
    If the array consists of OBJECT TYPE elements, gets or sets the value of the specified property of the current array element, as a Boolean, otherwise, gets the value of the current array element as a Boolean.
    Syntax
    'Declaration
     
    Public Overloads ReadOnly Property Item( _
       ByVal i As Integer _
    ) As Object
    public object Item( 
       int i
    ) {get;}

    Parameters

    i
    Zero-based ordinal of the OBJECT TYPE property. Ignored when the array consists of elements with type other than OBJECT TYPE.

    Property Value

    The value of the current array element property, having the specified index, if the array consists of OBJECT TYPE elements as a Boolean. Otherwise, the value of the current array element as a Boolean.
    Remarks
    If the array consists of OBJECT TYPE elements and i is equal or more than FieldCount, or it is less than zero, System.ArgumentOutOfRangeException is thrown.
    See Also