PathString.FromUriComponent メソッド

定義

オーバーロード

FromUriComponent(String)

パスが URI 形式でエスケープされている場合、パスが指定された PathString を返します。 文字列 MUST NOT には、パスでない任意の値が含まれます。

FromUriComponent(Uri)

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

FromUriComponent(String)

ソース:
PathString.cs
ソース:
PathString.cs

パスが URI 形式でエスケープされている場合、パスが指定された PathString を返します。 文字列 MUST NOT には、パスでない任意の値が含まれます。

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

パラメーター

uriComponent
String

URI 形式で表示されるのでエスケープされたパス。

戻り値

出力される PathString

適用対象

FromUriComponent(Uri)

ソース:
PathString.cs
ソース:
PathString.cs

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

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

パラメーター

uri
Uri

URI オブジェクト

戻り値

出力される PathString

適用対象