UriHelper.ParseQueryString Method
- Namespace
- Kampute.DocToolkit.Support
- Assembly
- Kampute.DocToolkit.dll
Definition
Parses a query string into a collection of key-value pairs.
public static IEnumerable<KeyValuePair<string, string>> ParseQueryString(string queryString)Parameters
queryStringstring- The query string to parse.
Returns
- IEnumerable<KeyValuePair<string, string>>
- An IEnumerable<T> of key-value pairs representing the parsed query string.
Remarks
This method is implemented by using deferred execution. The immediate return value is an object that stores all the information that is required to perform the action.
