MobileServiceCollectionView<T>.Item Property

Gets or sets the item at the specified index.

Namespace:  Microsoft.WindowsAzure.MobileServices
Assembly:  Microsoft.WindowsAzure.MobileServices.Managed (in Microsoft.WindowsAzure.MobileServices.Managed.dll)

Syntax

'Declaration
Public Property Item ( _
    index As Integer _
) As T
    Get 
    Set
'Usage
Dim instance As MobileServiceCollectionView 
Dim index As Integer 
Dim value As T

value = instance.Item(index)

instance.Item(index) = value
public T this[
    int index
] { get; set; }
public:
property T Item[int index] {
    T get (int index);
    void set (int index, T value);
}
member Item : 'T with get, set
JScript supports the use of indexed properties, but not the declaration of new ones.

Parameters

Property Value

Type: T

See Also

Reference

MobileServiceCollectionView<T> Class

Microsoft.WindowsAzure.MobileServices Namespace