Share via


IHubFilter.OnConnectedAsync Method

Definition

Allows handling of the OnConnectedAsync() method.

public:
 virtual System::Threading::Tasks::Task ^ OnConnectedAsync(Microsoft::AspNetCore::SignalR::HubLifetimeContext ^ context, Func<Microsoft::AspNetCore::SignalR::HubLifetimeContext ^, System::Threading::Tasks::Task ^> ^ next);
public virtual System.Threading.Tasks.Task OnConnectedAsync (Microsoft.AspNetCore.SignalR.HubLifetimeContext context, Func<Microsoft.AspNetCore.SignalR.HubLifetimeContext,System.Threading.Tasks.Task> next);
abstract member OnConnectedAsync : Microsoft.AspNetCore.SignalR.HubLifetimeContext * Func<Microsoft.AspNetCore.SignalR.HubLifetimeContext, System.Threading.Tasks.Task> -> System.Threading.Tasks.Task
override this.OnConnectedAsync : Microsoft.AspNetCore.SignalR.HubLifetimeContext * Func<Microsoft.AspNetCore.SignalR.HubLifetimeContext, System.Threading.Tasks.Task> -> System.Threading.Tasks.Task
Public Overridable Function OnConnectedAsync (context As HubLifetimeContext, next As Func(Of HubLifetimeContext, Task)) As Task

Parameters

context
HubLifetimeContext

The context for OnConnectedAsync.

next
Func<HubLifetimeContext,Task>

The next filter to run, and for the final one, the Hub invocation.

Returns

Applies to