QueryString Constructor
Namespace: Microsoft.Owin
Assembly: Microsoft.Owin (in Microsoft.Owin.dll)
Overload List
Name | Description | |
---|---|---|
QueryString(String) | Initialize the query string with a given value. This value must be in escaped and delimited format without a leading '?' character. |
|
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.StringThe 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.StringThe unencoded parameter name
value
Type: System.StringThe unencoded parameter value
Return to top