List of dimension value IDs.

Namespace: Endeca.Navigation
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.2.0.0 (0.0.0.0)

Syntax

C#
[SerializableAttribute]
public class DimValIdList : IList, 
	ICollection, IEnumerable
Visual Basic
<SerializableAttribute> _
Public Class DimValIdList _
	Implements IList, ICollection, IEnumerable
Visual C++
[SerializableAttribute]
public ref class DimValIdList : IList, 
	ICollection, IEnumerable

Remarks

Every dimension value (DimVal object) has a unique ID. A DimValIdList object contains a list of dimension value IDs. Typically, the developer does not create and populate the DimValIdList object, but instead it is returned by get properties such as DimSearchDimensions. Note that while DimValIdList objects are lists of dimension value IDs, DimValList objects are lists of the actual dimension values.

DimValIdList objects are primarily used to generate MDEX Engine queries. For example, dimension value IDs are used before executing a basic navigation query, as the input argument to the NavDescriptors property setter. There will be a one-to-one mapping between the IDs in the DimValIdList argument and the dimension values (DimVal objects) that are returned by the query.

Inheritance Hierarchy

System..::..Object
  Endeca.Navigation..::..DimValIdList

See Also