9 overrides of OnDisconnectedAsync
Microsoft.AspNetCore.Components.Server (1)
ComponentHub.cs (1)
70
public override Task
OnDisconnectedAsync
(Exception exception)
Microsoft.AspNetCore.SignalR.Tests (5)
HubConnectionHandlerTestUtils\Hubs.cs (5)
128
public override Task
OnDisconnectedAsync
(Exception e)
601
public override Task
OnDisconnectedAsync
(Exception exception)
1250
public override Task
OnDisconnectedAsync
(Exception exception)
1289
public override Task
OnDisconnectedAsync
(Exception exception)
1319
public override async Task
OnDisconnectedAsync
(Exception ex)
SignalRSamples (3)
Hubs\Chat.cs (1)
16
public override Task
OnDisconnectedAsync
(Exception exception)
Hubs\DynamicChat.cs (1)
16
public override Task
OnDisconnectedAsync
(Exception exception)
Hubs\HubTChat.cs (1)
16
public 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)
66
_onDisconnectedMiddleware = (context, exception) => context.Hub.
OnDisconnectedAsync
(exception);
139
await hub.
OnDisconnectedAsync
(exception);
Microsoft.AspNetCore.SignalR.Tests (2)
HubConnectionHandlerTestUtils\Hubs.cs (2)
1254
return base.
OnDisconnectedAsync
(exception);
1294
return base.
OnDisconnectedAsync
(exception);