Gets the collection of IAttributeValues (property values and dimension values) associated with this record.

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

Syntax

C#
public virtual IAttributeMap Attributes { get; }
Visual Basic (Declaration)
Public Overridable ReadOnly Property Attributes As IAttributeMap
Visual C++
public:
virtual property IAttributeMap^ Attributes {
	IAttributeMap^ get ();
}

Implements

IAttributeMapProvider..::.Attributes

Remarks

This collection provides a composite view of the elements of the Properties and DimensionValues collections. This facilitates iterating and accessing the attributes of a record without having to differentiate between PropertyValues and DimensionValues.

Note that the MDEX engine ensures that there are no collisions between property and dimension value names; that is Key identifies either a property or dimension value, but not both.

See Also