QueryString.Add Method  
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
| Add(QueryString) | Concatenates  | 
| Add(String, String) | Concatenates a query string with  | 
Add(QueryString)
- Source:
- QueryString.cs
- 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.QueryStringPublic Function Add (other As QueryString) As QueryStringParameters
- other
- QueryString
The QueryString to concatenate.
Returns
The concatenated QueryString.
Applies to
Add(String, String)
- Source:
- QueryString.cs
- 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.QueryStringPublic Function Add (name As String, value As String) As QueryStringParameters
- name
- String
The name of the query string to concatenate.
- value
- String
The value of the query string to concatenate.
Returns
The concatenated QueryString.