Attempts to find the AggregateRecord whose ID is specified by id as in ResolveAggregateRecord(String) but also accepts a hint as to which CommandInfo may contain the record, specified by source. The function will attempt to resolve the AggregateRecord in source but will look in the results of other CommandInfos if it is not found in source.

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

Syntax

C#
public AggregateRecord ResolveAggregateRecord(
	string id,
	CommandInfo source
)
Visual Basic (Declaration)
Public Function ResolveAggregateRecord ( _
	id As String, _
	source As CommandInfo _
) As AggregateRecord
Visual C++
public:
AggregateRecord^ ResolveAggregateRecord(
	String^ id, 
	CommandInfo^ source
)

Parameters

id
Type: System..::.String
The ID of the AggregateRecord to resolve.
source
Type: CommandInfo
A hint to try to resolve the ID using the results of the supplied CommandInfo before looking at the results of other CommandInfos.

Return Value

The AggregateRecord with the ID id.

See Also