QueryBuilder.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(String, IEnumerable<String>) |
Adds a query string token to the instance. |
Add(String, String) |
Adds a query string token to the instance. |
Add(String, IEnumerable<String>)
- Source:
- QueryBuilder.cs
- Source:
- QueryBuilder.cs
- Source:
- QueryBuilder.cs
Adds a query string token to the instance.
public:
void Add(System::String ^ key, System::Collections::Generic::IEnumerable<System::String ^> ^ values);
public void Add (string key, System.Collections.Generic.IEnumerable<string> values);
member this.Add : string * seq<string> -> unit
Public Sub Add (key As String, values As IEnumerable(Of String))
Parameters
- key
- String
The query key.
- values
- IEnumerable<String>
The sequence of query values.
Applies to
Add(String, String)
- Source:
- QueryBuilder.cs
- Source:
- QueryBuilder.cs
- Source:
- QueryBuilder.cs
Adds a query string token to the instance.
public:
void Add(System::String ^ key, System::String ^ value);
public void Add (string key, string value);
member this.Add : string * string -> unit
Public Sub Add (key As String, value As String)
Parameters
- key
- String
The query key.
- value
- String
The query value.