KestrelConfigurationLoader.UnixSocketEndpoint Method

Definition

Overloads

UnixSocketEndpoint(String)

Bind to given Unix domain socket path.

UnixSocketEndpoint(String, Action<ListenOptions>)

Bind to given Unix domain socket path.

UnixSocketEndpoint(String)

Source:
KestrelConfigurationLoader.cs
Source:
KestrelConfigurationLoader.cs

Bind to given Unix domain socket path.

public:
 Microsoft::AspNetCore::Server::Kestrel::KestrelConfigurationLoader ^ UnixSocketEndpoint(System::String ^ socketPath);
public Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader UnixSocketEndpoint (string socketPath);
member this.UnixSocketEndpoint : string -> Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader
Public Function UnixSocketEndpoint (socketPath As String) As KestrelConfigurationLoader

Parameters

socketPath
String

Returns

Applies to

UnixSocketEndpoint(String, Action<ListenOptions>)

Source:
KestrelConfigurationLoader.cs
Source:
KestrelConfigurationLoader.cs

Bind to given Unix domain socket path.

public:
 Microsoft::AspNetCore::Server::Kestrel::KestrelConfigurationLoader ^ UnixSocketEndpoint(System::String ^ socketPath, Action<Microsoft::AspNetCore::Server::Kestrel::Core::ListenOptions ^> ^ configure);
public Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader UnixSocketEndpoint (string socketPath, Action<Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions> configure);
member this.UnixSocketEndpoint : string * Action<Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions> -> Microsoft.AspNetCore.Server.Kestrel.KestrelConfigurationLoader
Public Function UnixSocketEndpoint (socketPath As String, configure As Action(Of ListenOptions)) As KestrelConfigurationLoader

Parameters

socketPath
String
configure
Action<ListenOptions>

Returns

Applies to