Gets the element identified with the specified key.

Namespace: BlueCieloECM.InnoCielo.Meridian.Server
Assembly: BlueCieloECM.InnoCielo.Meridian (in BlueCieloECM.InnoCielo.Meridian.dll) Version: 1.4.0.0 (1.4.40.0)

Syntax

C#
public Object this[
	string key
] { get; }
Visual Basic
Public ReadOnly Default Property Item ( _
	key As String _
) As Object
	Get
Visual C++
public:
property Object^ default[String^ key] {
	Object^ get (String^ key);
}

Parameters

key
Type: System..::..String
The ID property value, or the Name property value, or the DisplayName property value of the element to get.

Return Value

The element with the specified key. If the specified key is not found, the KeyNotFoundException is thrown.

Exceptions

ExceptionCondition
System.Collections.Generic..::..KeyNotFoundException When an element with the specified key is not present in the collection.

See Also