KestrelServerOptions.ListenNamedPipe Method

Definition

Overloads

ListenNamedPipe(String)

Bind to the given named pipe.

ListenNamedPipe(String, Action<ListenOptions>)

Bind to the given named pipe. Specify callback to configure endpoint-specific settings.

ListenNamedPipe(String)

Bind to the given named pipe.

public void ListenNamedPipe (string pipeName);
member this.ListenNamedPipe : string -> unit
Public Sub ListenNamedPipe (pipeName As String)

Parameters

pipeName
String

Applies to

ListenNamedPipe(String, Action<ListenOptions>)

Bind to the given named pipe. Specify callback to configure endpoint-specific settings.

public void ListenNamedPipe (string pipeName, Action<Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions> configure);
member this.ListenNamedPipe : string * Action<Microsoft.AspNetCore.Server.Kestrel.Core.ListenOptions> -> unit
Public Sub ListenNamedPipe (pipeName As String, configure As Action(Of ListenOptions))

Parameters

pipeName
String
configure
Action<ListenOptions>

Applies to