共用方式為


HostAttribute 建構函式

定義

多載

HostAttribute(String)

初始化 HostAttribute 類別的新執行個體。

HostAttribute(String[])

初始化 HostAttribute 類別的新執行個體。

HostAttribute(String)

來源:
HostAttribute.cs

初始化 HostAttribute 類別的新執行個體。

public:
 HostAttribute(System::String ^ host);
public HostAttribute (string host);
new Microsoft.AspNetCore.Routing.HostAttribute : string -> Microsoft.AspNetCore.Routing.HostAttribute
Public Sub New (host As String)

參數

host
String

路由期間使用的主機。 主機應該是 Unicode 而不是 punycode,而且可能有埠。

適用於

HostAttribute(String[])

來源:
HostAttribute.cs

初始化 HostAttribute 類別的新執行個體。

public:
 HostAttribute(... cli::array <System::String ^> ^ hosts);
public HostAttribute (params string[] hosts);
new Microsoft.AspNetCore.Routing.HostAttribute : string[] -> Microsoft.AspNetCore.Routing.HostAttribute
Public Sub New (ParamArray hosts As String())

參數

hosts
String[]

路由期間使用的主機。 主機應該是 Unicode 而不是 punycode,而且可能有埠。 空集合表示將接受任何主機。

適用於