WebSocketClient.ConnectAsync(Uri, CancellationToken) Method

Definition

Establishes a WebSocket connection to an endpoint.

public:
 System::Threading::Tasks::Task<System::Net::WebSockets::WebSocket ^> ^ ConnectAsync(Uri ^ uri, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task<System.Net.WebSockets.WebSocket> ConnectAsync (Uri uri, System.Threading.CancellationToken cancellationToken);
member this.ConnectAsync : Uri * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Net.WebSockets.WebSocket>
Public Function ConnectAsync (uri As Uri, cancellationToken As CancellationToken) As Task(Of WebSocket)

Parameters

uri
Uri

The Uri of the endpoint.

cancellationToken
CancellationToken

A CancellationToken used to terminate the connection.

Returns

Applies to