ServiceEndpointCollection::InsertItem Method (Int32, ServiceEndpoint^)
.NET Framework (current version)
Inserts an item into the collection at the specified index.
Assembly: System.ServiceModel (in System.ServiceModel.dll)
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
Available since 3.0
Show: