9 overrides of OnDisconnectedAsync
Microsoft.AspNetCore.Components.Server (1)
ComponentHub.cs (1)
70public override Task OnDisconnectedAsync(Exception exception)
Microsoft.AspNetCore.SignalR.Tests (5)
HubConnectionHandlerTestUtils\Hubs.cs (5)
128public override Task OnDisconnectedAsync(Exception e) 601public override Task OnDisconnectedAsync(Exception exception) 1250public override Task OnDisconnectedAsync(Exception exception) 1289public override Task OnDisconnectedAsync(Exception exception) 1319public override async Task OnDisconnectedAsync(Exception ex)
SignalRSamples (3)
Hubs\Chat.cs (1)
16public override Task OnDisconnectedAsync(Exception exception)
Hubs\DynamicChat.cs (1)
16public override Task OnDisconnectedAsync(Exception exception)
Hubs\HubTChat.cs (1)
16public override Task OnDisconnectedAsync(Exception exception)
6 references to OnDisconnectedAsync
Microsoft.AspNetCore.SignalR.Core (4)
HubLifetimeContext.cs (1)
7/// Context for the hub lifetime events <see cref="Hub.OnConnectedAsync"/> and <see cref="Hub.OnDisconnectedAsync(Exception)"/>.
IHubFilter.cs (1)
28/// Allows handling of the <see cref="Hub.OnDisconnectedAsync(Exception)"/> method.
Internal\DefaultHubDispatcher.cs (2)
58_onDisconnectedMiddleware = (context, exception) => context.Hub.OnDisconnectedAsync(exception); 131await hub.OnDisconnectedAsync(exception);
Microsoft.AspNetCore.SignalR.Tests (2)
HubConnectionHandlerTestUtils\Hubs.cs (2)
1254return base.OnDisconnectedAsync(exception); 1294return base.OnDisconnectedAsync(exception);