PathString.Add メソッド

定義

オーバーロード

Add(PathString)

2 つの PathString インスタンスを追加して、1 つの PathString 値に結合します。

Add(QueryString)

PathString と QueryString を組み合わせて、結合した URI 形式の文字列値を生成します。

Add(PathString)

2 つの PathString インスタンスを追加して、1 つの PathString 値に結合します。

public:
 Microsoft::AspNetCore::Http::PathString Add(Microsoft::AspNetCore::Http::PathString other);
public Microsoft.AspNetCore.Http.PathString Add (Microsoft.AspNetCore.Http.PathString other);
member this.Add : Microsoft.AspNetCore.Http.PathString -> Microsoft.AspNetCore.Http.PathString
Public Function Add (other As PathString) As PathString

パラメーター

other
PathString

戻り値

結合した PathString 値

適用対象

Add(QueryString)

PathString と QueryString を組み合わせて、結合した URI 形式の文字列値を生成します。

public:
 System::String ^ Add(Microsoft::AspNetCore::Http::QueryString other);
public string Add (Microsoft.AspNetCore.Http.QueryString other);
member this.Add : Microsoft.AspNetCore.Http.QueryString -> string
Public Function Add (other As QueryString) As String

パラメーター

other
QueryString

戻り値

結合した URI 形式文字列値

適用対象