共用方式為


HostString 建構函式

定義

多載

HostString(String)

不經修改而建立新的 HostString。 值應該為 Unicode 而不是 Punycode,且可以有連接埠。 也允許 IPv4 和 IPv6 位址,一樣可以有連接埠。

HostString(String, Int32)

從其主機和埠元件建立新的 HostString。

HostString(String)

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

不經修改而建立新的 HostString。 值應該為 Unicode 而不是 Punycode,且可以有連接埠。 也允許 IPv4 和 IPv6 位址,一樣可以有連接埠。

public:
 HostString(System::String ^ value);
public HostString (string value);
public HostString (string? value);
new Microsoft.AspNetCore.Http.HostString : string -> Microsoft.AspNetCore.Http.HostString
Public Sub New (value As String)

參數

value
String

適用於

HostString(String, Int32)

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

從其主機和埠元件建立新的 HostString。

public:
 HostString(System::String ^ host, int port);
public HostString (string host, int port);
new Microsoft.AspNetCore.Http.HostString : string * int -> Microsoft.AspNetCore.Http.HostString
Public Sub New (host As String, port As Integer)

參數

host
String

此值應該是 Unicode,而不是 punycode。 IPv6 位址必須使用方括弧。

port
Int32

正值,大於 0,表示主機字串中的埠。

適用於