ClientValueObjectCollection<T>.Item property
Gets the item at the specified index.
Namespace: Microsoft.SharePoint.Client
Assembly: Microsoft.SharePoint.Client.Runtime (in Microsoft.SharePoint.Client.Runtime.dll)
Syntax
'Declaration
Public ReadOnly Property Item ( _
index As Integer _
) As T
Get
'Usage
Dim instance As ClientValueObjectCollection
Dim index As Integer
Dim value As T
value = instance.Item(index)
public T this[
int index
] { get; }
Parameters
index
Type: System.Int32The index of the item to be returned.
Property value
Type: T
The item at the specified index.
See also
Reference
ClientValueObjectCollection<T> class