Constructor. Takes in sessionId and queryId and sets the IDs as logging parameters for the sid and rid keys respectively.

Namespace: Endeca.Navigation
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.3.0.0 (6.3.0.853)

Syntax

C#
public ENEQueryInfo(
	string sessionId,
	string queryId
)
Visual Basic
Public Sub New ( _
	sessionId As String, _
	queryId As String _
)
Visual C++
public:
ENEQueryInfo(
	String^ sessionId, 
	String^ queryId
)

Parameters

sessionId
Type: System..::..String
Session ID to pass on as logging information with the sid key.
queryId
Type: System..::..String
Query ID to pass on as logging information with the rid key.

Remarks

Future versions of the MDEX Engine API may not support this constructor. Instead, this functionailty is preserved by calling the basic constructor for ENEQueryInfo followed by Add(String, String) with the IDs and their respective keys.

See Also