QueryString.FromUriComponent メソッド

定義

オーバーロード

FromUriComponent(Uri)

URI オブジェクト形式のクエリから QueryString を返します。 相対 URI オブジェクトはサポートされていません。

FromUriComponent(String)

URI 形式でエスケープされたクエリから QueryString を返します。 文字列 MUST NOT には、クエリでない任意の値が含まれます。

FromUriComponent(Uri)

URI オブジェクト形式のクエリから QueryString を返します。 相対 URI オブジェクトはサポートされていません。

public:
 static Microsoft::AspNetCore::Http::QueryString FromUriComponent(Uri ^ uri);
public static Microsoft.AspNetCore.Http.QueryString FromUriComponent (Uri uri);
static member FromUriComponent : Uri -> Microsoft.AspNetCore.Http.QueryString
Public Shared Function FromUriComponent (uri As Uri) As QueryString

パラメーター

uri
Uri

URI オブジェクト

戻り値

結果の QueryString

適用対象

FromUriComponent(String)

URI 形式でエスケープされたクエリから QueryString を返します。 文字列 MUST NOT には、クエリでない任意の値が含まれます。

public:
 static Microsoft::AspNetCore::Http::QueryString FromUriComponent(System::String ^ uriComponent);
public static Microsoft.AspNetCore.Http.QueryString FromUriComponent (string uriComponent);
static member FromUriComponent : string -> Microsoft.AspNetCore.Http.QueryString
Public Shared Function FromUriComponent (uriComponent As String) As QueryString

パラメーター

uriComponent
String

URI 形式でエスケープされたクエリ。

戻り値

結果の QueryString

適用対象