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
ConnectionStatus.Failed now fires when the transport gives up retrying (BestHTTP "No more reconnect attempt!"). Previously the dispatcher only emitted Disconnected, leaving no terminal signal for UI to gate a "Reconnect" button on.
BestHttpSignalRConnection no longer hardcodes TransportDisconnectReason.ClientRequested on OnClosed — distinguishes user-initiated disconnect from transport give-up via a _disconnectRequested flag. Also emits OnDisconnected(NetworkError) from the OnError path when the hub state is already Closed — some BestHTTP versions don't fire OnClosed after retry-budget exhaustion, only OnError, leaving the UI hung in Reconnecting.