Oracle® Coherence .NET API Reference Release 3.6.1
E18812-01

Gets or sets the element with the specified key.

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

Syntax

C#
public virtual Object this[
	Object key
] { get; set; }

Parameters

key
Type: System..::.Object
The key of the element to get or set.

Return Value

The element with the specified key.

Implements

IDictionary..::.Item[([(Object])])

Exceptions

ExceptionCondition
System..::.NotSupportedException The property is set and the dictionary object is read-only or the property is set, key does not exist in the collection, and the dictionary has a fixed size.
System..::.ArgumentNullException Key is null.

See Also