QueryString Constructors

Definition

Overloads

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

QueryString(String)

Source:
QueryString.cs

Initialize the query string with a given value. This value must be in escaped and delimited format without a leading '?' character.

public QueryString (string value);
new Microsoft.Owin.QueryString : string -> Microsoft.Owin.QueryString
Public Sub New (value As String)

Parameters

value
String

The query string to be assigned to the Value property.

Applies to

QueryString(String, String)

Source:
QueryString.cs

Initialize a query string with a single given parameter name and value. The value is

public QueryString (string name, string value);
new Microsoft.Owin.QueryString : string * string -> Microsoft.Owin.QueryString
Public Sub New (name As String, value As String)

Parameters

name
String

The unencoded parameter name

value
String

The unencoded parameter value

Applies to