共用方式為


HostString.FromUriComponent 方法

定義

多載

FromUriComponent(String)

從指定的 URI 元件建立新的 HostString。 任何 Punycode 會轉換成 Unicode。

FromUriComponent(Uri)

從給定 URI 執行個體的主機和連接埠建立新的 HostString。 Punycode 會轉換成 Unicode。

FromUriComponent(String)

來源:
HostString.cs
來源:
HostString.cs
來源:
HostString.cs

從指定的 URI 元件建立新的 HostString。 任何 Punycode 會轉換成 Unicode。

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

參數

uriComponent
String

要從中建立 的 HostString URI 元件字串。

傳回

建立的 HostString

適用於

FromUriComponent(Uri)

來源:
HostString.cs
來源:
HostString.cs
來源:
HostString.cs

從給定 URI 執行個體的主機和連接埠建立新的 HostString。 Punycode 會轉換成 Unicode。

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

參數

uri
Uri

用來建立 Uri 的來源 HostString

傳回

建立的 HostString

適用於