DataServiceCollection<T>.InsertItem Method
Adds a specified item to the collection at the specified index.
Namespace: System.Data.Services.Client
Assembly: Microsoft.Data.Services.Client (in Microsoft.Data.Services.Client.dll)
Syntax
'Declaration
Protected Overrides Sub InsertItem ( _
index As Integer, _
item As T _
)
'Usage
Dim index As Integer
Dim item As T
Me.InsertItem(index, item)
protected override void InsertItem(
int index,
T item
)
protected:
virtual void InsertItem(
int index,
T item
) override
abstract InsertItem :
index:int *
item:'T -> unit
override InsertItem :
index:int *
item:'T -> unit
protected override function InsertItem(
index : int,
item : T
)
Parameters
- index
Type: System.Int32
Index at which to add the item.
- item
Type: T
The item to add.
Remarks
When you are manually tracking changes to the collection, you must override the InsertItem method to prevent items from being automatically added to the collection.