You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// application task can end when exception, or Context.Abort() from hub
431
431
await_connectionDelegate(connection);
432
432
}
433
+
catch(ObjectDisposedException)
434
+
{
435
+
// When the application shuts down and disposes IServiceProvider, HubConnectionHandler.RunHubAsync is still running and runs into _dispatcher.OnDisconnectedAsync
436
+
// no need to throw the error out
437
+
}
433
438
catch(Exceptionex)
434
439
{
435
440
// Capture the exception to communicate it to the transport (this isn't strictly required)
0 commit comments