ConnectionHandler.OnConnectedAsync(ConnectionContext) Method

Definition

Called when a new connection is accepted to the endpoint.

public:
 abstract System::Threading::Tasks::Task ^ OnConnectedAsync(Microsoft::AspNetCore::Connections::ConnectionContext ^ connection);
public abstract System.Threading.Tasks.Task OnConnectedAsync (Microsoft.AspNetCore.Connections.ConnectionContext connection);
abstract member OnConnectedAsync : Microsoft.AspNetCore.Connections.ConnectionContext -> System.Threading.Tasks.Task
Public MustOverride Function OnConnectedAsync (connection As ConnectionContext) As Task

Parameters

Returns

A Task that represents the connection lifetime. When the task completes, the connection is complete.

Applies to