Constructor where the queryString gets parsed into the individual query fields.

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

Syntax

C#
public UrlENEQuery(
	string queryString,
	string encoding
)
Visual Basic
Public Sub New ( _
	queryString As String, _
	encoding As String _
)
Visual C++
public:
UrlENEQuery(
	String^ queryString, 
	String^ encoding
)

Parameters

queryString
Type: System..::..String
Query string form URL to be parsed into invididual query options.
encoding
Type: System..::..String
The character set encoding of the URL. Typically "windows-1252" or "UTF-8".

Remarks

The common use for this constructor is to pass in QueryString as is, i.e. arguments remain x-www-form-urlencoded, and this constructor parses out the arguments it is interested in.

Exceptions

ExceptionCondition
Endeca.Navigation..::..UrlENEQueryParseException If there were any errors in parsing queryString.

See Also