9 references to _stopCts
Aspire.Hosting.Browsers.Tests (9)
src\Aspire.Hosting.Browsers\BrowserPageSession.cs (9)
90using var captureCts = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken, _stopCts.Token); 184_stopCts.Cancel(); 229_stopCts.Dispose(); 360if (_stopCts.IsCancellationRequested) 393while (!_stopCts.IsCancellationRequested && _timeProvider.GetUtcNow() < reconnectDeadline) 404await ConnectAsync(createTarget: false, _stopCts.Token).ConfigureAwait(false); 408catch (OperationCanceledException) when (_stopCts.IsCancellationRequested) 422await Task.Delay(s_connectionRecoveryDelay, _timeProvider, _stopCts.Token).ConfigureAwait(false); 424catch (OperationCanceledException) when (_stopCts.IsCancellationRequested)