ServiceEndpointCollection::InsertItem Method (Int32, ServiceEndpoint^)

 

Inserts an item into the collection at the specified index.

Namespace:   System.ServiceModel.Description
Assembly:  System.ServiceModel (in System.ServiceModel.dll)

protected:
virtual void InsertItem(
	int index,
	ServiceEndpoint^ item
) override

Parameters

index
Type: System::Int32

The zero-based index at which the item should be inserted.

item
Type: System.ServiceModel.Description::ServiceEndpoint^

The ServiceEndpoint item to insert at the specified index.

Exception Condition
ArgumentOutOfRangeException

index is less than zero.

-or-

index is greater than the number of items contained in the collection.

ArgumentNullException

item is null.

This method overrides the virtual InsertItem(Int32, T) method defined in the base class and is provided to do input validation that ensures null values are not inserted into the collection. It is not intended to be called by users.

.NET Framework
Available since 3.0
Return to top
Show: