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>

반환

적용 대상