QueryString.Add メソッド

定義

オーバーロード

Add(QueryString)

現在の other クエリ文字列に連結します。

Add(String, String)

クエリ文字列と 現在のクエリ文字列namevalueを連結します。

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)

クエリ文字列と 現在のクエリ文字列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

適用対象