KestrelServerOptions.ListenUnixSocket Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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(System::String ^ socketPath);
public void ListenUnixSocket (string socketPath);
member this.ListenUnixSocket : string -> unit
Public Sub ListenUnixSocket (socketPath As String)
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(System::String ^ socketPath, Action<Microsoft::AspNetCore::Server::Kestrel::Core::ListenOptions ^> ^ configure);
public void ListenUnixSocket (string socketPath, Action<Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions> configure);
member this.ListenUnixSocket : string * Action<Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions> -> unit
Public Sub ListenUnixSocket (socketPath As String, configure As Action(Of ListenOptions))
Parameters
- socketPath
- String
- configure
- Action<ListenOptions>