Returns the Value of the first IAttributeValue from Attributes with the specified key (property or dimension name).

Namespace:  Endeca.Data
Assembly:  Endeca.Data (in Endeca.Data.dll) Version: 2.1.1.0 (2.1.1.620)

Syntax

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

Parameters

attributeKey
Type: System..::.String

Return Value

The value of an IAttributeValue, or a 0-length string if there is no IAttributeValue with the specified key.

Remarks

Because there is no ordering implied among the IAttributeValues that share a given key, this property should only be used when the particular IAttributeValue accessed by this property is immaterial to an application.

See Also