KestrelConfigurationLoader.Endpoint Метод

Определение

Перегрузки

Endpoint(IPEndPoint)

Привязка к заданной конечной точке IP-адреса.

Endpoint(IPAddress, Int32)

Привязка к заданному IP-адресу и порту.

Endpoint(IPEndPoint, Action<ListenOptions>)

Привязка к заданному IP-адресу и порту.

Endpoint(String, Action<EndpointConfiguration>)

Указывает действие конфигурации, выполняемое при загрузке конечной точки с заданным именем из конфигурации.

Endpoint(IPAddress, Int32, Action<ListenOptions>)

Привязка к заданному IP-адресу и порту.

Endpoint(IPEndPoint)

Привязка к заданной конечной точке IP-адреса.

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

Параметры

endPoint
IPEndPoint

Возвращаемое значение

Применяется к

Endpoint(IPAddress, Int32)

Привязка к заданному 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

Параметры

address
IPAddress
port
Int32

Возвращаемое значение

Применяется к

Endpoint(IPEndPoint, Action<ListenOptions>)

Привязка к заданному 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

Параметры

endPoint
IPEndPoint
configure
Action<ListenOptions>

Возвращаемое значение

Применяется к

Endpoint(String, Action<EndpointConfiguration>)

Указывает действие конфигурации, выполняемое при загрузке конечной точки с заданным именем из конфигурации.

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

Параметры

name
String
configureOptions
Action<EndpointConfiguration>

Возвращаемое значение

Применяется к

Endpoint(IPAddress, Int32, Action<ListenOptions>)

Привязка к заданному 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

Параметры

address
IPAddress
port
Int32
configure
Action<ListenOptions>

Возвращаемое значение

Применяется к