Attempts to find the Record whose ID is specified by id as in ResolveRecord(String) but also accepts a hint as to which CommandInfo may contain the Record specified by source. The function will attempt to resolve the Record 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 Record ResolveRecord(
	string id,
	CommandInfo source
)
Visual Basic (Declaration)
Public Function ResolveRecord ( _
	id As String, _
	source As CommandInfo _
) As Record
Visual C++
public:
Record^ ResolveRecord(
	String^ id, 
	CommandInfo^ source
)

Parameters

id
Type: System..::.String
The ID of the Record 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 Record with the ID id.

See Also