Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

ServiceEndpointCollection::SetItem Method (Int32, ServiceEndpoint^)

 

Replaces the element in the collection at the specified index.

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

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

Parameters

index
Type: System::Int32

The zero-based index of the element to replace.

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

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

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft