4 writes to StopCts
Microsoft.AspNetCore.SignalR.Client.Core (4)
HubConnection.cs (4)
301
_state.
StopCts
= new CancellationTokenSource();
630
_state.
StopCts
= new CancellationTokenSource();
1778
_state.
StopCts
= new CancellationTokenSource();
2445
StopCts
= new CancellationTokenSource();
9 references to StopCts
Microsoft.AspNetCore.SignalR.Client.Core (9)
HubConnection.cs (9)
285
if (_state.
StopCts
.Token.IsCancellationRequested)
290
using (CancellationTokenUtils.CreateLinkedToken(cancellationToken, _state.
StopCts
.Token, out var linkedToken))
566
_state.
StopCts
.Cancel();
1849
await Task.Delay(nextRetryDelay.Value, _state.
StopCts
.Token).ConfigureAwait(false);
1860
CompleteClose(GetOperationCanceledException("Connection stopped during reconnect delay. Done reconnecting.", ex, _state.
StopCts
.Token));
1876
await StartAsyncCore(_state.
StopCts
.Token).ConfigureAwait(false);
1891
if (_state.
StopCts
.IsCancellationRequested)
1897
CompleteClose(GetOperationCanceledException("Connection stopped during reconnect attempt. Done reconnecting.", ex, _state.
StopCts
.Token));
1954
return new OperationCanceledException(message, innerException, _state.
StopCts
.Token);