QueryString.Add 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
Add(QueryString) |
|
Add(String, String) |
將查詢字串與 |
Add(QueryString)
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)
將查詢字串與 name
和 value
串連至目前的查詢字串。
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 。