Freigeben über


ServerFactory.ConnectAsync Methode

Definition

Überlädt

ConnectAsync(String, CancellationToken)

Stellt eine Verbindung mit einer IPC-Pipe her, die mit Create(Func<Stream,Task>, ServerFactory+ServerOptions)erstellt wurde.

ConnectAsync(String, ServerFactory+ClientOptions, CancellationToken)

Stellt eine Verbindung mit einer IPC-Pipe her, die mit Create(Func<Stream,Task>, ServerFactory+ServerOptions)erstellt wurde.

ConnectAsync(String, CancellationToken)

Stellt eine Verbindung mit einer IPC-Pipe her, die mit Create(Func<Stream,Task>, ServerFactory+ServerOptions)erstellt wurde.

public static System.Threading.Tasks.Task<System.IO.Stream> ConnectAsync (string pipeName, System.Threading.CancellationToken cancellationToken);
static member ConnectAsync : string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.IO.Stream>
Public Shared Function ConnectAsync (pipeName As String, cancellationToken As CancellationToken) As Task(Of Stream)

Parameter

pipeName
String

Ein vollqualifizierter Pipename, einschließlich des Pfads. Unter Windows sollte der präfixierte Pfad \.\pipe</code> sein.

cancellationToken
CancellationToken

Ein Abbruchtoken.

Gibt zurück

Der Duplexstream, der über die Pipe eingerichtet wurde.

Gilt für:

ConnectAsync(String, ServerFactory+ClientOptions, CancellationToken)

Stellt eine Verbindung mit einer IPC-Pipe her, die mit Create(Func<Stream,Task>, ServerFactory+ServerOptions)erstellt wurde.

public static System.Threading.Tasks.Task<System.IO.Stream> ConnectAsync (string pipeName, Microsoft.ServiceHub.Framework.ServerFactory.ClientOptions options, System.Threading.CancellationToken cancellationToken);
static member ConnectAsync : string * Microsoft.ServiceHub.Framework.ServerFactory.ClientOptions * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.IO.Stream>
Public Shared Function ConnectAsync (pipeName As String, options As ServerFactory.ClientOptions, cancellationToken As CancellationToken) As Task(Of Stream)

Parameter

pipeName
String

Ein vollqualifizierter Pipename, einschließlich des Pfads. Unter Windows sollte der präfixierte Pfad \.\pipe</code> sein.

options
ServerFactory.ClientOptions

Optionen, die beeinflussen können, wie die IPC-Pipe verbunden ist.

cancellationToken
CancellationToken

Ein Abbruchtoken.

Gibt zurück

Der Duplexstream, der über die Pipe eingerichtet wurde.

Gilt für: