A helper method to add the DimensionValueCollection to the Dictionary<(Of <(TKey, TValue>)>) where TKey is String and TValue is DimensionValue.

Namespace:  Endeca.Web.Url.Indexing
Assembly:  Endeca.Web (in Endeca.Web.dll) Version: 2.1.3.0 (2.1.3.622)

Syntax

C#
public static void IndexDimensionValueCollection(
	DimensionValueCollection dimVals,
	Dictionary<string, DimensionValue> index
)
Visual Basic (Declaration)
Public Shared Sub IndexDimensionValueCollection ( _
	dimVals As DimensionValueCollection, _
	index As Dictionary(Of String, DimensionValue) _
)
Visual C++
public:
static void IndexDimensionValueCollection(
	DimensionValueCollection^ dimVals, 
	Dictionary<String^, DimensionValue^>^ index
)

Parameters

dimVals
Type: Endeca.Data..::.DimensionValueCollection
The DimensionValueCollection to add.
index
Type: System.Collections.Generic..::.Dictionary<(Of <(String, DimensionValue>)>)
The Dictionary<(Of <(TKey, TValue>)>) where TKey is a String and TValue is a DimensionValue is the to hold the dimVals.

See Also