KestrelConfigurationLoader.Endpoint Méthode

Définition

Surcharges

Endpoint(IPEndPoint)

Lier à un point de terminaison IP donné.

Endpoint(IPAddress, Int32)

Lier à l’adresse IP et au port donnés.

Endpoint(IPEndPoint, Action<ListenOptions>)

Lier à l’adresse IP et au port donnés.

Endpoint(String, Action<EndpointConfiguration>)

Spécifie une action de configuration à exécuter lorsqu’un point de terminaison portant le nom donné est chargé à partir de la configuration.

Endpoint(IPAddress, Int32, Action<ListenOptions>)

Lier à l’adresse IP et au port donnés.

Endpoint(IPEndPoint)

Source:
KestrelConfigurationLoader.cs
Source:
KestrelConfigurationLoader.cs

Lier à un point de terminaison IP donné.

public:
 Microsoft::AspNetCore::Server::Kestrel::KestrelConfigurationLoader ^ Endpoint(System::Net::IPEndPoint ^ endPoint);
public Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader Endpoint (System.Net.IPEndPoint endPoint);
member this.Endpoint : System.Net.IPEndPoint -> Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader
Public Function Endpoint (endPoint As IPEndPoint) As KestrelConfigurationLoader

Paramètres

endPoint
IPEndPoint

Retours

S’applique à

Endpoint(IPAddress, Int32)

Source:
KestrelConfigurationLoader.cs
Source:
KestrelConfigurationLoader.cs

Lier à l’adresse IP et au port donnés.

public:
 Microsoft::AspNetCore::Server::Kestrel::KestrelConfigurationLoader ^ Endpoint(System::Net::IPAddress ^ address, int port);
public Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader Endpoint (System.Net.IPAddress address, int port);
member this.Endpoint : System.Net.IPAddress * int -> Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader
Public Function Endpoint (address As IPAddress, port As Integer) As KestrelConfigurationLoader

Paramètres

address
IPAddress
port
Int32

Retours

S’applique à

Endpoint(IPEndPoint, Action<ListenOptions>)

Source:
KestrelConfigurationLoader.cs
Source:
KestrelConfigurationLoader.cs

Lier à l’adresse IP et au port donnés.

public:
 Microsoft::AspNetCore::Server::Kestrel::KestrelConfigurationLoader ^ Endpoint(System::Net::IPEndPoint ^ endPoint, Action<Microsoft::AspNetCore::Server::Kestrel::Core::ListenOptions ^> ^ configure);
public Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader Endpoint (System.Net.IPEndPoint endPoint, Action<Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions> configure);
member this.Endpoint : System.Net.IPEndPoint * Action<Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions> -> Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader
Public Function Endpoint (endPoint As IPEndPoint, configure As Action(Of ListenOptions)) As KestrelConfigurationLoader

Paramètres

endPoint
IPEndPoint
configure
Action<ListenOptions>

Retours

S’applique à

Endpoint(String, Action<EndpointConfiguration>)

Source:
KestrelConfigurationLoader.cs
Source:
KestrelConfigurationLoader.cs

Spécifie une action de configuration à exécuter lorsqu’un point de terminaison portant le nom donné est chargé à partir de la configuration.

public:
 Microsoft::AspNetCore::Server::Kestrel::KestrelConfigurationLoader ^ Endpoint(System::String ^ name, Action<Microsoft::AspNetCore::Server::Kestrel::EndpointConfiguration ^> ^ configureOptions);
public Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader Endpoint (string name, Action<Microsoft.AspNetCore.Server.Kestrel.EndpointConfiguration> configureOptions);
member this.Endpoint : string * Action<Microsoft.AspNetCore.Server.Kestrel.EndpointConfiguration> -> Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader
Public Function Endpoint (name As String, configureOptions As Action(Of EndpointConfiguration)) As KestrelConfigurationLoader

Paramètres

name
String
configureOptions
Action<EndpointConfiguration>

Retours

S’applique à

Endpoint(IPAddress, Int32, Action<ListenOptions>)

Source:
KestrelConfigurationLoader.cs
Source:
KestrelConfigurationLoader.cs

Lier à l’adresse IP et au port donnés.

public:
 Microsoft::AspNetCore::Server::Kestrel::KestrelConfigurationLoader ^ Endpoint(System::Net::IPAddress ^ address, int port, Action<Microsoft::AspNetCore::Server::Kestrel::Core::ListenOptions ^> ^ configure);
public Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader Endpoint (System.Net.IPAddress address, int port, Action<Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions> configure);
member this.Endpoint : System.Net.IPAddress * int * Action<Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions> -> Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader
Public Function Endpoint (address As IPAddress, port As Integer, configure As Action(Of ListenOptions)) As KestrelConfigurationLoader

Paramètres

address
IPAddress
port
Int32
configure
Action<ListenOptions>

Retours

S’applique à