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>

戻り値

適用対象