Obsolete. Use the constructor that takes an encoding instead. This version defaults to using the "windows-1252" encoding.

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

Syntax

C#
[ObsoleteAttribute("This constructor is obsolete; use the version that takes an encoding instead")]
public UrlGen(
	string queryString
)
Visual Basic
<ObsoleteAttribute("This constructor is obsolete; use the version that takes an encoding instead")> _
Public Sub New ( _
	queryString As String _
)
Visual C++
[ObsoleteAttribute(L"This constructor is obsolete; use the version that takes an encoding instead")]
public:
UrlGen(
	String^ queryString
)

Parameters

queryString
Type: System..::..String
The base query string with which this class manipulates.

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