QueryString.Add 方法

定义

重载

Add(QueryString)

连接到 other 当前查询字符串。

Add(String, String)

将查询字符串与 namevalue 连接到当前查询字符串。

Add(QueryString)

Source:
QueryString.cs
Source:
QueryString.cs
Source:
QueryString.cs

连接到 other 当前查询字符串。

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

参数

other
QueryString

要连接的 QueryString

返回

串联的 QueryString

适用于

Add(String, String)

Source:
QueryString.cs
Source:
QueryString.cs
Source:
QueryString.cs

将查询字符串与 namevalue 连接到当前查询字符串。

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

参数

name
String

要连接的查询字符串的名称。

value
String

要连接的查询字符串的值。

返回

串联的 QueryString

适用于