ServiceEndpointCollection.InsertItem(Int32, ServiceEndpoint) Method

Definition

Inserts an item into the collection at the specified index.

protected:
 override void InsertItem(int index, System::ServiceModel::Description::ServiceEndpoint ^ item);
protected override void InsertItem (int index, System.ServiceModel.Description.ServiceEndpoint item);
override this.InsertItem : int * System.ServiceModel.Description.ServiceEndpoint -> unit
Protected Overrides Sub InsertItem (index As Integer, item As ServiceEndpoint)

Parameters

index
Int32

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

item
ServiceEndpoint

The ServiceEndpoint item to insert at the specified index.

Exceptions

index is less than zero.

-or-

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

item is null.

Remarks

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.

Applies to