2 writes to CurrentConnectionStateUnsynchronized
Microsoft.AspNetCore.SignalR.Client.Core (2)
HubConnection.cs (2)
534_state.CurrentConnectionStateUnsynchronized = startingConnectionState; 1731_state.CurrentConnectionStateUnsynchronized = null;
17 references to CurrentConnectionStateUnsynchronized
Microsoft.AspNetCore.SignalR.Client.Core (17)
HubConnection.cs (17)
186public string? ConnectionId => _state.CurrentConnectionStateUnsynchronized?.Connection.ConnectionId; 480SafeAssert(_state.CurrentConnectionStateUnsynchronized == null, "We already have a connection!"); 593connectionState = _state.CurrentConnectionStateUnsynchronized; 703if (_state.CurrentConnectionStateUnsynchronized != null) 708await SendHubMessage(_state.CurrentConnectionStateUnsynchronized, new CancelInvocationMessage(irq.InvocationId), cancellationToken: default).ConfigureAwait(false); 1713return _state.CurrentConnectionStateUnsynchronized!.RunTimerActions(); 1720_state.CurrentConnectionStateUnsynchronized!.OnServerTimeout(); 1729SafeAssert(ReferenceEquals(_state.CurrentConnectionStateUnsynchronized, connectionState), 1863SafeAssert(ReferenceEquals(_state.CurrentConnectionStateUnsynchronized, null), 1904SafeAssert(ReferenceEquals(_state.CurrentConnectionStateUnsynchronized, null), 2358if (_hubConnection._state.CurrentConnectionStateUnsynchronized != null) 2360SafeAssert(ReferenceEquals(_hubConnection._state.CurrentConnectionStateUnsynchronized, this), 2478SafeAssert(CurrentConnectionStateUnsynchronized != null, "We don't have a connection!", memberName, fileName, lineNumber); 2507return CurrentConnectionStateUnsynchronized; 2510[MemberNotNullWhen(true, nameof(CurrentConnectionStateUnsynchronized))] 2514return CurrentConnectionStateUnsynchronized is not null && !CurrentConnectionStateUnsynchronized.Stopping;