Indexes the AggregateRecord contained within the result.

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

Syntax

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

Parameters

result
Type: T
The object containing the AggregateRecord to index.
index
Type: System.Collections.Generic..::.Dictionary<(Of <(String, AggregateRecord>)>)
The Dictionary<(Of <(TKey, TValue>)>) where TKey is a String and TValue is a AggregateRecord to add to the index.

See Also