ServiceEndpointCollection.SetItem(Int32, ServiceEndpoint) Method

Definition

Replaces the element in the collection at the specified index.

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

Parameters

index
Int32

The zero-based index of the element to replace.

item
ServiceEndpoint

The new value for ServiceEndpoint item 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 SetItem(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