KestrelServerOptions.ListenNamedPipe 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
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)
- Source:
- KestrelServerOptions.cs
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>)
- Source:
- KestrelServerOptions.cs
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>