2 writes to CurrentConnectionStateUnsynchronized
Microsoft.AspNetCore.SignalR.Client.Core (2)
HubConnection.cs (2)
548_state.CurrentConnectionStateUnsynchronized = startingConnectionState; 1915_state.CurrentConnectionStateUnsynchronized = null;
18 references to CurrentConnectionStateUnsynchronized
Microsoft.AspNetCore.SignalR.Client.Core (18)
HubConnection.cs (18)
198public string? ConnectionId => _state.CurrentConnectionStateUnsynchronized?.Connection.ConnectionId; 494SafeAssert(_state.CurrentConnectionStateUnsynchronized == null, "We already have a connection!"); 580var connectionState = _state.CurrentConnectionStateUnsynchronized; 751connectionState = _state.CurrentConnectionStateUnsynchronized; 1284if (_state.CurrentConnectionStateUnsynchronized != null) 1289await SendHubMessage(_state.CurrentConnectionStateUnsynchronized, new CancelInvocationMessage(irq.InvocationId), cancellationToken: default).ConfigureAwait(false); 1897return _state.CurrentConnectionStateUnsynchronized!.RunTimerActions(); 1904_state.CurrentConnectionStateUnsynchronized!.OnServerTimeout(); 1913SafeAssert(ReferenceEquals(_state.CurrentConnectionStateUnsynchronized, connectionState), 2047SafeAssert(ReferenceEquals(_state.CurrentConnectionStateUnsynchronized, null), 2088SafeAssert(ReferenceEquals(_state.CurrentConnectionStateUnsynchronized, null), 2556if (_hubConnection._state.CurrentConnectionStateUnsynchronized != null) 2558SafeAssert(ReferenceEquals(_hubConnection._state.CurrentConnectionStateUnsynchronized, this), 2676SafeAssert(CurrentConnectionStateUnsynchronized != null, "We don't have a connection!", memberName, fileName, lineNumber); 2705return CurrentConnectionStateUnsynchronized; 2708[MemberNotNullWhen(true, nameof(CurrentConnectionStateUnsynchronized))] 2712return CurrentConnectionStateUnsynchronized is not null && !CurrentConnectionStateUnsynchronized.Stopping;