HostAttribute 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
重载
HostAttribute(String) |
初始化 HostAttribute 类的新实例。 |
HostAttribute(String[]) |
初始化 HostAttribute 类的新实例。 |
HostAttribute(String)
- Source:
- 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[])
- Source:
- 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,并且可能具有端口。 空集合意味着将接受任何主机。