Freigeben über


HostAttribute Konstruktoren

Definition

Überlädt

HostAttribute(String)

Initialisiert eine neue Instanz der HostAttribute-Klasse.

HostAttribute(String[])

Initialisiert eine neue Instanz der HostAttribute-Klasse.

HostAttribute(String)

Quelle:
HostAttribute.cs

Initialisiert eine neue Instanz der HostAttribute-Klasse.

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)

Parameter

host
String

Der host, der während des Routings verwendet wird. Der Host sollte Unicode anstelle von Punycode sein und möglicherweise über einen Port verfügen.

Gilt für:

HostAttribute(String[])

Quelle:
HostAttribute.cs

Initialisiert eine neue Instanz der HostAttribute-Klasse.

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())

Parameter

hosts
String[]

Die während des Routings verwendeten Hosts. Hosts sollten Unicode anstelle von Punycode sein und möglicherweise über einen Port verfügen. Eine leere Auflistung bedeutet, dass jeder Host akzeptiert wird.

Gilt für: