MobileServiceCollectionView<T>.IList<Object>.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
Private Property Item ( _
    index As Integer _
) As Object Implements IList(Of Object).Item 
    Get 
    Set
'Usage
Dim instance As MobileServiceCollectionView 
Dim index As Integer 
Dim value As Object 

value = CType(instance, IList(Of Object)).Item(index)

CType(instance, IList(Of Object)).Item(index) = value
Object IList<Object>.this[
    int index
] { get; set; }
private:
virtual property Object^ Item[int index] {
    Object^ get (int index) sealed = IList<Object^>::Item::get;
    void set (int index, Object^ value) sealed = IList<Object^>::Item::set;
}
private abstract Item : Object with get, set 
private override Item : Object with get, set
JScript supports the use of explicit interface implementations, but not the declarations of new ones.

Parameters

Property Value

Type: System.Object
The item at the specified index.

Implements

IList<T>.Item[Int32]

See Also

Reference

MobileServiceCollectionView<T> Class

Microsoft.WindowsAzure.MobileServices Namespace