Share via


HostAttribute 构造函数

定义

重载

HostAttribute(String)

初始化 HostAttribute 类的新实例。

HostAttribute(String[])

初始化 HostAttribute 类的新实例。

HostAttribute(String)

初始化 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 类的新实例。

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,并且可能具有端口。 空集合意味着将接受任何主机。

适用于