2 writes to CurrentConnectionStateUnsynchronized
Microsoft.AspNetCore.SignalR.Client.Core (2)
17 references to CurrentConnectionStateUnsynchronized
Microsoft.AspNetCore.SignalR.Client.Core (17)
HubConnection.cs (17)
192public string? ConnectionId => _state.CurrentConnectionStateUnsynchronized?.Connection.ConnectionId;
486SafeAssert(_state.CurrentConnectionStateUnsynchronized == null, "We already have a connection!");
599connectionState = _state.CurrentConnectionStateUnsynchronized;
709if (_state.CurrentConnectionStateUnsynchronized != null)
714await SendHubMessage(_state.CurrentConnectionStateUnsynchronized, new CancelInvocationMessage(irq.InvocationId), cancellationToken: default).ConfigureAwait(false);
1719return _state.CurrentConnectionStateUnsynchronized!.RunTimerActions();
1726_state.CurrentConnectionStateUnsynchronized!.OnServerTimeout();
1735SafeAssert(ReferenceEquals(_state.CurrentConnectionStateUnsynchronized, connectionState),
1869SafeAssert(ReferenceEquals(_state.CurrentConnectionStateUnsynchronized, null),
1910SafeAssert(ReferenceEquals(_state.CurrentConnectionStateUnsynchronized, null),
2364if (_hubConnection._state.CurrentConnectionStateUnsynchronized != null)
2366SafeAssert(ReferenceEquals(_hubConnection._state.CurrentConnectionStateUnsynchronized, this),
2484SafeAssert(CurrentConnectionStateUnsynchronized != null, "We don't have a connection!", memberName, fileName, lineNumber);
2513return CurrentConnectionStateUnsynchronized;
2516[MemberNotNullWhen(true, nameof(CurrentConnectionStateUnsynchronized))]
2520return CurrentConnectionStateUnsynchronized is not null && !CurrentConnectionStateUnsynchronized.Stopping;