Indexes the DimensionValue contained within the result.

Namespace:  Endeca.Web.Url.Indexing
Assembly:  Endeca.Web (in Endeca.Web.dll) Version: 2.1.1.0 (2.1.1.620)

Syntax

C#
protected virtual void IndexDimensionValues(
	T result,
	Dictionary<string, DimensionValue> index
)
Visual Basic (Declaration)
Protected Overridable Sub IndexDimensionValues ( _
	result As T, _
	index As Dictionary(Of String, DimensionValue) _
)
Visual C++
protected:
virtual void IndexDimensionValues(
	T result, 
	Dictionary<String^, DimensionValue^>^ index
)

Parameters

result
Type: T
The object containing the DimensionValue to index.
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 add to the index.

See Also