Свойство | Type | Description |
---|
Méthode | Description | |
---|---|---|
Parse ( string query ) : |
Parses the query string into the internal dictionary and optionally also returns this dictionary
|
|
SetValues ( string key, IEnumerable |
Assigns multiple values to the same key
|
|
ToString ( ) : string |
Writes out the urlencoded data/query string or full URL based on the internally set values.
|
|
UrlEncodingParser ( string queryStringOrUrl = null ) : System |
Always pass in a UrlEncoded data or a URL to parse from unless you are creating a new one from scratch.
|
public Parse ( string query ) : |
||
query | string | /// Query string key value pairs or a full URL. If URL is /// passed the URL is re-written in Write operation /// |
Résultat |
public SetValues ( string key, IEnumerable |
||
key | string | |
values | IEnumerable |
|
Résultat | void |
public UrlEncodingParser ( string queryStringOrUrl = null ) : System | ||
queryStringOrUrl | string | /// Pass a query string or raw Form data, or a full URL. /// If a URL is parsed the part prior to the ? is stripped /// but saved. Then when you write the original URL is /// re-written with the new query string. /// |
Résultat | System |