IBM WebSphere™ eXtreme Scale Client for .NET Release 8.6.0.0 API Specification
Assembly: Client.ApiImpl (in Client.ApiImpl.dll) Version: 8.6.0.0
The index must be greater than or equal to 0 and the index must be less than the number of elements in the collection; otherwise a
ArgumentOutOfRangeException is thrown.
Inserts an item with the specified key and value into the OrderedDictionary TKey, TValue at the specified index.
Namespace: IBM.WebSphere.CachingAssembly: Client.ApiImpl (in Client.ApiImpl.dll) Version: 8.6.0.0
Syntax
Parameters
- index
- Type: System Int32
The zero-based index where the item should be inserted.
- key
- Type: TKey
The key of the item to insert.
- value
- Type: TValue
The value of the item to insert.
Implements
IOrderedDictionary TKey, TValue Insert(Int32, TKey, TValue)Exceptions
Exception | Condition |
---|---|
System ArgumentNullException | Thrown when the key is null. |
System ArgumentOutOfRangeException | Thrown when index is out of range. |
Remarks
See Also