HubConnectionHandler<THub>.OnConnectedAsync(ConnectionContext) 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.
Called when a new connection is accepted to the endpoint.
public:
override System::Threading::Tasks::Task ^ OnConnectedAsync(Microsoft::AspNetCore::Connections::ConnectionContext ^ connection);
public override System.Threading.Tasks.Task OnConnectedAsync (Microsoft.AspNetCore.Connections.ConnectionContext connection);
override this.OnConnectedAsync : Microsoft.AspNetCore.Connections.ConnectionContext -> System.Threading.Tasks.Task
Public Overrides Function OnConnectedAsync (connection As ConnectionContext) As Task
Parameters
- connection
- ConnectionContext
The new ConnectionContext
Returns
A Task that represents the connection lifetime. When the task completes, the connection is complete.