KestrelConfigurationLoader.LocalhostEndpoint 方法

定义

重载

LocalhostEndpoint(Int32)

使用给定端口侦听 ::1 和 127.0.0.1。 这种类型的终结点不支持通过指定 0 来请求动态端口。

LocalhostEndpoint(Int32, Action<ListenOptions>)

使用给定端口侦听 ::1 和 127.0.0.1。 这种类型的终结点不支持通过指定 0 来请求动态端口。

LocalhostEndpoint(Int32)

Source:
KestrelConfigurationLoader.cs
Source:
KestrelConfigurationLoader.cs
Source:
KestrelConfigurationLoader.cs

使用给定端口侦听 ::1 和 127.0.0.1。 这种类型的终结点不支持通过指定 0 来请求动态端口。

public:
 Microsoft::AspNetCore::Server::Kestrel::KestrelConfigurationLoader ^ LocalhostEndpoint(int port);
public Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader LocalhostEndpoint (int port);
member this.LocalhostEndpoint : int -> Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader
Public Function LocalhostEndpoint (port As Integer) As KestrelConfigurationLoader

参数

port
Int32

返回

适用于

LocalhostEndpoint(Int32, Action<ListenOptions>)

Source:
KestrelConfigurationLoader.cs
Source:
KestrelConfigurationLoader.cs
Source:
KestrelConfigurationLoader.cs

使用给定端口侦听 ::1 和 127.0.0.1。 这种类型的终结点不支持通过指定 0 来请求动态端口。

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

参数

port
Int32
configure
Action<ListenOptions>

返回

适用于