次の方法で共有


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

ルーティング中に使用されるホスト。 ホストは、punycode ではなく Unicode である必要があり、ポートを持つことができます。

適用対象

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[]

ルーティング中に使用されるホスト。 ホストは、punycode ではなく Unicode である必要があり、ポートを持つ場合があります。 空のコレクションは、任意のホストを受け入れることを意味します。

適用対象