Takes a ENEQuery and serializes the object into URL query string format.

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

Syntax

C#
public static string ToQueryString(
	ENEQuery neq,
	string encoding
)
Visual Basic
Public Shared Function ToQueryString ( _
	neq As ENEQuery, _
	encoding As String _
) As String
Visual C++
public:
static String^ ToQueryString(
	ENEQuery^ neq, 
	String^ encoding
)

Parameters

neq
Type: Endeca.Navigation..::..ENEQuery
ENEQuery to be serialized into URL query string format.
encoding
Type: System..::..String
The URL encoding (for example, "latin-1" or "unicode").

Return Value

A URL query string form of the neq.

Remarks

Parameters are x-www-form-urlencoded.

See Also