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

Gets or sets the element with the specified key.

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

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