KestrelServerOptions.ListenNamedPipe 方法

定义

重载

ListenNamedPipe(String)

绑定到给定的命名管道。

ListenNamedPipe(String, Action<ListenOptions>)

绑定到给定的命名管道。 指定回调以配置特定于终结点的设置。

ListenNamedPipe(String)

Source:
KestrelServerOptions.cs

绑定到给定的命名管道。

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

参数

pipeName
String

适用于

ListenNamedPipe(String, Action<ListenOptions>)

Source:
KestrelServerOptions.cs

绑定到给定的命名管道。 指定回调以配置特定于终结点的设置。

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))

参数

pipeName
String
configure
Action<ListenOptions>

适用于