Constructor. Takes in sessionId and sets it as the value for the sid key. The constructor automatically generates the query ID and sets it as the value for the rid key.

Namespace: Endeca.Navigation
Assembly: Endeca.Navigation (in Endeca.Navigation.dll) Version: 6.2.0.0 (0.0.0.0)

Syntax

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

Parameters

sessionId
Type: System..::..String
Session ID to pass on as logging information with the sid 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