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

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

- queryString (String)
- The base query string with which this class manipulates.

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.