XhtmlControlAdapter.PreprocessQueryString(String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the portion of the given query string that contains parameters for processing the request. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.
protected:
System::String ^ PreprocessQueryString(System::String ^ queryString);
protected string PreprocessQueryString (string queryString);
member this.PreprocessQueryString : string -> string
Protected Function PreprocessQueryString (queryString As String) As String
Parameters
- queryString
- String
The query string from the QueryString.
Returns
A string containing the processed query string.
Remarks
Use this method to reduce the query string to its basic parameters by removing the following information:
The file name and path information.
A parameter specifying the current FormsCookieName.
A parameter named "x-up-descharset", which specifies the current character set.
The page adapter uses the returned query string to create a NameValueCollection object to access the remaining parameters and their values.
This method is primarily used by the .NET Framework internally.