HostString 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
HostString(String) |
不經修改而建立新的 HostString。 值應該為 Unicode 而不是 Punycode,且可以有連接埠。 也允許 IPv4 和 IPv6 位址,一樣可以有連接埠。 |
HostString(String, Int32) |
從其主機和埠元件建立新的 HostString。 |
HostString(String)
不經修改而建立新的 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。
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,表示主機字串中的埠。