1 implementation of OnDisconnectedAsync
Microsoft.AspNetCore.SignalR.Core (1)
Internal\HubFilterFactory.cs (1)
56public async Task OnDisconnectedAsync(HubLifetimeContext context, Exception? exception, Func<HubLifetimeContext, Exception?, Task> next)
2 references to OnDisconnectedAsync
Microsoft.AspNetCore.SignalR.Core (2)
Internal\DefaultHubDispatcher.cs (1)
78_onDisconnectedMiddleware = (context, exception) => resolvedFilter.OnDisconnectedAsync(context, exception, disconnectedFilter);
Internal\HubFilterFactory.cs (1)
62await filter.OnDisconnectedAsync(context, exception, next);