Gets or sets an element with the specified key.

Namespace: Endeca.Logging
Assembly: Endeca.Logging (in Endeca.Logging.dll) Version: 6.1.3.0

Syntax

C#
public virtual Object this[
	Object key
] { get; set; }
Visual Basic
Public Overridable Default Property Item ( _
	key As Object _
) As Object
	Get
	Set
Visual C++
public:
virtual property Object^ default[Object^ key] {
	Object^ get (Object^ key);
	void set (Object^ key, Object^ value);
}

Parameters

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

Field Value

An element with the specified key.

Implements

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

See Also