Constructor where the start URL will be the one specified in this constructor.

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

Syntax

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

Parameters

queryString
Type: System..::..String
The base query string with which this class manipulates.
encoding
Type: System..::..String
The encoding to use for the URL. Typically "windows-1252" or "UTF-8".

Remarks

This URL is the base with which this UrlGen manipulates. startUrl's form is of URL query string. That is everything of a URL after the '?' mark and of the form where the query is made up of key value pairs delimited by '&' and each pair delimited by '=' and the keys and values are x-www-form-urlencoded.

See Also