WebUtilities.AddQueryString Method
Adds a query string.
Namespace: Microsoft.Owin.Infrastructure
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Overload List
Name | Description | |
---|---|---|
AddQueryString(String, IDictionary<String, String>) | Append the given query keys and values to the uri. |
|
AddQueryString(String, String) | Append the given query to the uri. |
|
AddQueryString(String, String, String) | Append the given query key and value to the uri. |
See Also
WebUtilities Class
Microsoft.Owin.Infrastructure Namespace
Return to top
WebUtilities.AddQueryString Method (String, IDictionary<String, String>)
Append the given query keys and values to the uri.
Syntax
public static string AddQueryString(
string uri,
IDictionary<string, string> queryString
)
public:
static String^ AddQueryString(
String^ uri,
IDictionary<String^, String^>^ queryString
)
static member AddQueryString :
uri:string *
queryString:IDictionary<string, string> -> string
Public Shared Function AddQueryString (
uri As String,
queryString As IDictionary(Of String, String)
) As String
Parameters
uri
Type: System.StringThe base uri.
queryString
Type: System.Collections.Generic.IDictionary<String, String>A collection of name value query pairs to append.
Return Value
Type: System.String
The combine result.
Return to top
WebUtilities.AddQueryString Method (String, String)
Append the given query to the uri.
Syntax
public static string AddQueryString(
string uri,
string queryString
)
public:
static String^ AddQueryString(
String^ uri,
String^ queryString
)
static member AddQueryString :
uri:string *
queryString:string -> string
Public Shared Function AddQueryString (
uri As String,
queryString As String
) As String
Parameters
uri
Type: System.StringThe base uri.
queryString
Type: System.StringThe query string to append, if any.
Return Value
Type: System.String
The combine result.
Return to top
WebUtilities.AddQueryString Method (String, String, String)
Append the given query key and value to the uri.
Syntax
public static string AddQueryString(
string uri,
string name,
string value
)
public:
static String^ AddQueryString(
String^ uri,
String^ name,
String^ value
)
static member AddQueryString :
uri:string *
name:string *
value:string -> string
Public Shared Function AddQueryString (
uri As String,
name As String,
value As String
) As String
Parameters
uri
Type: System.StringThe base uri.
name
Type: System.StringThe name of the query key.
value
Type: System.StringThe query value.
Return Value
Type: System.String
The combine result.
Return to top