Share via


KestrelConfigurationLoader.Endpoint Método

Definição

Sobrecargas

Endpoint(IPEndPoint)

Associar ao ponto de extremidade IP especificado.

Endpoint(IPAddress, Int32)

Associar a determinada porta e endereço IP.

Endpoint(IPEndPoint, Action<ListenOptions>)

Associar a determinada porta e endereço IP.

Endpoint(String, Action<EndpointConfiguration>)

Especifica uma ação de configuração a ser executada quando um ponto de extremidade com o nome fornecido é carregado da configuração.

Endpoint(IPAddress, Int32, Action<ListenOptions>)

Associar a determinada porta e endereço IP.

Endpoint(IPEndPoint)

Origem:
KestrelConfigurationLoader.cs
Origem:
KestrelConfigurationLoader.cs

Associar ao ponto de extremidade IP especificado.

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

Parâmetros

endPoint
IPEndPoint

Retornos

Aplica-se a

Endpoint(IPAddress, Int32)

Origem:
KestrelConfigurationLoader.cs
Origem:
KestrelConfigurationLoader.cs

Associar a determinada porta e endereço IP.

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

Parâmetros

address
IPAddress
port
Int32

Retornos

Aplica-se a

Endpoint(IPEndPoint, Action<ListenOptions>)

Origem:
KestrelConfigurationLoader.cs
Origem:
KestrelConfigurationLoader.cs

Associar a determinada porta e endereço IP.

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

Parâmetros

endPoint
IPEndPoint
configure
Action<ListenOptions>

Retornos

Aplica-se a

Endpoint(String, Action<EndpointConfiguration>)

Origem:
KestrelConfigurationLoader.cs
Origem:
KestrelConfigurationLoader.cs

Especifica uma ação de configuração a ser executada quando um ponto de extremidade com o nome fornecido é carregado da configuração.

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

Parâmetros

name
String
configureOptions
Action<EndpointConfiguration>

Retornos

Aplica-se a

Endpoint(IPAddress, Int32, Action<ListenOptions>)

Origem:
KestrelConfigurationLoader.cs
Origem:
KestrelConfigurationLoader.cs

Associar a determinada porta e endereço IP.

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

Parâmetros

address
IPAddress
port
Int32
configure
Action<ListenOptions>

Retornos

Aplica-se a