UriExtensions.ParseQueryString Method
Parses the query portion of the specified URI.
Namespace: System.Net.Http
Assembly: System.Net.Http.Formatting (in System.Net.Http.Formatting.dll)
Syntax
'Declaration
<ExtensionAttribute> _
Public Shared Function ParseQueryString ( _
address As Uri _
) As NameValueCollection
'Usage
Dim address As Uri
Dim returnValue As NameValueCollection
returnValue = address.ParseQueryString()
public static NameValueCollection ParseQueryString(
this Uri address
)
[ExtensionAttribute]
public:
static NameValueCollection^ ParseQueryString(
Uri^ address
)
static member ParseQueryString :
address:Uri -> NameValueCollection
public static function ParseQueryString(
address : Uri
) : NameValueCollection
Parameters
- address
Type: System.Uri
The URI to parse.
Return Value
Type: System.Collections.Specialized.NameValueCollection
A NameValueCollection that contains the query parameters.
Usage Note
In Visual Basic and C#, you can call this method as an instance method on any object of type Uri. When you use instance method syntax to call this method, omit the first parameter. For more information, see https://msdn.microsoft.com/en-us/library/bb384936(v=vs.108) or https://msdn.microsoft.com/en-us/library/bb383977(v=vs.108).