4 writes to StopCts
Microsoft.AspNetCore.SignalR.Client.Core (4)
HubConnection.cs (4)
309
_state.
StopCts
= new CancellationTokenSource();
782
_state.
StopCts
= new CancellationTokenSource();
1952
_state.
StopCts
= new CancellationTokenSource();
2633
StopCts
= new CancellationTokenSource();
10 references to StopCts
Microsoft.AspNetCore.SignalR.Client.Core (10)
HubConnection.cs (10)
293
if (_state.
StopCts
.Token.IsCancellationRequested)
298
using (CancellationTokenUtils.CreateLinkedToken(cancellationToken, _state.
StopCts
.Token, out var linkedToken))
718
_state.
StopCts
.Cancel();
2023
await Task.Delay(nextRetryDelay.Value, _state.
StopCts
.Token).ConfigureAwait(false);
2034
CompleteClose(GetOperationCanceledException("Connection stopped during reconnect delay. Done reconnecting.", ex, _state.
StopCts
.Token));
2050
await StartAsyncCore(_state.
StopCts
.Token).ConfigureAwait(false);
2065
if (_state.
StopCts
.IsCancellationRequested)
2071
CompleteClose(GetOperationCanceledException("Connection stopped during reconnect attempt. Done reconnecting.", ex, _state.
StopCts
.Token));
2128
return new OperationCanceledException(message, innerException, _state.
StopCts
.Token);
2479
var connectionToken = _hubConnection._state.
StopCts
.Token;