HostAttribute 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
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,而且可能有埠。 空集合表示將接受任何主機。