Indexes the Record 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 IndexRecords(
	T result,
	Dictionary<string, Record> index
)
Visual Basic (Declaration)
Protected Overridable Sub IndexRecords ( _
	result As T, _
	index As Dictionary(Of String, Record) _
)
Visual C++
protected:
virtual void IndexRecords(
	T result, 
	Dictionary<String^, Record^>^ index
)

Parameters

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

See Also