MobileServiceCollectionView<T>.IList<Object>.Insert Method
Inserts an item to the collection at the specified index.
Namespace: Microsoft.WindowsAzure.MobileServices
Assembly: Microsoft.WindowsAzure.MobileServices.Managed (in Microsoft.WindowsAzure.MobileServices.Managed.dll)
Syntax
'Declaration
Private Sub Insert ( _
index As Integer, _
item As Object _
) Implements IList(Of Object).Insert
'Usage
Dim instance As MobileServiceCollectionView
Dim index As Integer
Dim item As Object
CType(instance, IList(Of Object)).Insert(index, _
item)
void IList<Object>.Insert(
int index,
Object item
)
private:
virtual void Insert(
int index,
Object^ item
) sealed = IList<Object^>::Insert
private abstract Insert :
index:int *
item:Object -> unit
private override Insert :
index:int *
item:Object -> unit
JScript supports the use of explicit interface implementations, but not the declarations of new ones.
Parameters
- index
Type: System.Int32
The index at which to insert the item.
- item
Type: System.Object
The item to insert.