Share via


KestrelServerOptions.ListenUnixSocket Method

Definition

Overloads

ListenUnixSocket(String)

Bind to the given Unix domain socket path.

ListenUnixSocket(String, Action<ListenOptions>)

Bind to the given Unix domain socket path. Specify callback to configure endpoint-specific settings.

ListenUnixSocket(String)

Source:
KestrelServerOptions.cs
Source:
KestrelServerOptions.cs
Source:
KestrelServerOptions.cs

Bind to the given Unix domain socket path.

public void ListenUnixSocket(string socketPath);

Parameters

socketPath
String

Applies to

ListenUnixSocket(String, Action<ListenOptions>)

Source:
KestrelServerOptions.cs
Source:
KestrelServerOptions.cs
Source:
KestrelServerOptions.cs

Bind to the given Unix domain socket path. Specify callback to configure endpoint-specific settings.

public void ListenUnixSocket(string socketPath, Action<Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions> configure);

Parameters

socketPath
String
configure
Action<ListenOptions>

Applies to