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.
Namespace:   Microsoft.Owin
Assembly:  Microsoft.Owin (in Microsoft.Owin.dll)
Overload List
| Name | Description | |
|---|---|---|
| .jpeg) | QueryString(String) | Initialize the query string with a given value. This value must be in escaped and delimited format without a leading '?' character. | 
| .jpeg) | QueryString(String, String) | Initialize a query string with a single given parameter name and value. The value is | 
See Also
QueryString Structure
Microsoft.Owin Namespace
Return to top
QueryString Constructor (String)
Initialize the query string with a given value. This value must be in escaped and delimited format without a leading '?' character.
Syntax
public QueryString(
    string value
)
public:
QueryString(
    String^ value
)
new : 
        value:string -> QueryString
Public Sub New (
    value As String
)
Parameters
- value 
 Type: System.String- The query string to be assigned to the Value property. 
Return to top
QueryString Constructor (String, String)
Initialize a query string with a single given parameter name and value. The value is
Syntax
public QueryString(
    string name,
    string value
)
public:
QueryString(
    String^ name,
    String^ value
)
new : 
        name:string *
        value:string -> QueryString
Public Sub New (
    name As String,
    value As String
)
Parameters
- name 
 Type: System.String- The unencoded parameter name 
- value 
 Type: System.String- The unencoded parameter value 
Return to top