Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

Adds an element with the provided key and value to the IDictionary object.

Namespace:  Tangosol.Util.Collections
Assembly:  Coherence (in Coherence.dll) Version: 3.7.1.23 (3.7.1.23)

Syntax

C#
public override void Add(
	Object key,
	Object value
)

Parameters

key
Type: System..::.Object
The Object to use as the key of the element to add.
value
Type: System..::.Object
The Object to use as the value of the element to add.

Implements

IDictionary..::.Add(Object, Object)

Exceptions

ExceptionCondition
System..::.ArgumentException An element with the same key already exists in the IDictionary object.
System..::.NotSupportedException The IDictionary is read-only. -or- The IDictionary has a fixed size.

See Also