Class clsBPwebQueryString
- Namespace
- PolarStudio
- Assembly
- PolarStudio.dll
This method provides an easy interface to the query string of a request.
public class clsBPwebQueryString
- Inheritance
-
clsBPwebQueryString
- Inherited Members
- Extension Methods
Properties
FullQueryString
Returns the full raw query string for the request.
public string FullQueryString { get; }
Property Value
this[string]
Returns the decoded value of one query parameter in the query string. If a parameter is added multiple times in one query string, only the value of the first instance is returned.
public string this[string pItemName] { get; }
Parameters
pItemName
stringThe name of the query parameter to search for.
Property Value
- string
The decoded value of the query parameter.
Methods
ToString()
This method returns the full query string.
public override string ToString()
Returns
- string
The full query string.