IPEndPointCollection::InsertItem Method
Inserts an IPEndPoint element into the IPEndPointCollection at the specified index.
Namespace: System.Net
Assembly: System.Net (in System.Net.dll)
Parameters
- index
- Type: System::Int32
The zero-based index at which item should be inserted.
- item
- Type: System.Net::IPEndPoint
The IPEndPoint object to insert. The value can be nullptr for reference types.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The index parameter is less than zero -or- the index parameter is greater than the current count of items in the IPEndPointCollection. |
| ArgumentNullException | The item parameter is nullptr. |
IPEndPointCollection does not accept nullptr as a valid value. IPEndPointCollection allows duplicate elements.
If index is equal to current count of items in the IPEndPointCollection , then the item is added to the end of IPEndPointCollection.
This method is an O(n) operation, where n is Collection<T>::Count.
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (Server Core Role not supported), Windows Server 2008 R2 (Server Core Role supported with SP1 or later; Itanium not supported)
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.