4 writes to StopCts
Microsoft.AspNetCore.SignalR.Client.Core (4)
HubConnection.cs (4)
295
_state.
StopCts
= new CancellationTokenSource();
624
_state.
StopCts
= new CancellationTokenSource();
1768
_state.
StopCts
= new CancellationTokenSource();
2435
StopCts
= new CancellationTokenSource();
9 references to StopCts
Microsoft.AspNetCore.SignalR.Client.Core (9)
HubConnection.cs (9)
279
if (_state.
StopCts
.Token.IsCancellationRequested)
284
using (CancellationTokenUtils.CreateLinkedToken(cancellationToken, _state.
StopCts
.Token, out var linkedToken))
560
_state.
StopCts
.Cancel();
1839
await Task.Delay(nextRetryDelay.Value, _state.
StopCts
.Token).ConfigureAwait(false);
1850
CompleteClose(GetOperationCanceledException("Connection stopped during reconnect delay. Done reconnecting.", ex, _state.
StopCts
.Token));
1866
await StartAsyncCore(_state.
StopCts
.Token).ConfigureAwait(false);
1881
if (_state.
StopCts
.IsCancellationRequested)
1887
CompleteClose(GetOperationCanceledException("Connection stopped during reconnect attempt. Done reconnecting.", ex, _state.
StopCts
.Token));
1944
return new OperationCanceledException(message, innerException, _state.
StopCts
.Token);