ClientObjectCollection.GetItemAtIndex method
Gets the element at the specified index of the ClientObjectCollection.
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client.Runtime (in Microsoft.SharePoint.Client.Runtime.dll)
Syntax
'Declaration
Protected Function GetItemAtIndex ( _
i As Integer _
) As Object
'Usage
Dim i As Integer
Dim returnValue As Object
returnValue = Me.GetItemAtIndex(i)
protected Object GetItemAtIndex(
int i
)
Parameters
i
Type: System.Int32The zero-based index of the element.
Return value
Type: System.Object
The element at the specified index of the ClientObjectCollection.
Remarks
The method is an O(1) operation.