QueryString.Add Method

Definition

Overloads

Add(QueryString)

Concatenates other to the current query string.

Add(String, String)

Concatenates a query string with name and value to the current query string.

Add(QueryString)

Source:
QueryString.cs
Source:
QueryString.cs

Concatenates other to the current query string.

public:
 Microsoft::AspNetCore::Http::QueryString Add(Microsoft::AspNetCore::Http::QueryString other);
public Microsoft.AspNetCore.Http.QueryString Add (Microsoft.AspNetCore.Http.QueryString other);
member this.Add : Microsoft.AspNetCore.Http.QueryString -> Microsoft.AspNetCore.Http.QueryString
Public Function Add (other As QueryString) As QueryString

Parameters

other
QueryString

The QueryString to concatenate.

Returns

The concatenated QueryString.

Applies to

Add(String, String)

Source:
QueryString.cs
Source:
QueryString.cs

Concatenates a query string with name and value to the current query string.

public:
 Microsoft::AspNetCore::Http::QueryString Add(System::String ^ name, System::String ^ value);
public Microsoft.AspNetCore.Http.QueryString Add (string name, string value);
member this.Add : string * string -> Microsoft.AspNetCore.Http.QueryString
Public Function Add (name As String, value As String) As QueryString

Parameters

name
String

The name of the query string to concatenate.

value
String

The value of the query string to concatenate.

Returns

The concatenated QueryString.

Applies to