Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Adds a query string.
Namespace:   Microsoft.Owin.Infrastructure
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)
Overload List
| Name | Description | |
|---|---|---|
| .jpeg) .jpeg) | AddQueryString(String, IDictionary<String, String>) | Append the given query keys and values to the uri. | 
| .jpeg) .jpeg) | AddQueryString(String, String) | Append the given query to the uri. | 
| .jpeg) .jpeg) | 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.String- The 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.String- The base uri. 
- queryString 
 Type: System.String- The 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.String- The base uri. 
- name 
 Type: System.String- The name of the query key. 
- value 
 Type: System.String- The query value. 
Return Value
Type: System.String
The combine result.
Return to top