A herlper method to add the DimensionValue to the Dictionary<(Of <(TKey, TValue>)>) where TKey is a 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 IndexDimensionValue(
	DimensionValue dimVal,
	Dictionary<string, DimensionValue> index
)
Visual Basic (Declaration)
Public Shared Sub IndexDimensionValue ( _
	dimVal As DimensionValue, _
	index As Dictionary(Of String, DimensionValue) _
)
Visual C++
public:
static void IndexDimensionValue(
	DimensionValue^ dimVal, 
	Dictionary<String^, DimensionValue^>^ index
)

Parameters

dimVal
Type: Endeca.Data..::.DimensionValue
The DimensionValue 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 to hold the dimVal.

See Also