1 write to _abortedCts
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.cs (1)
318_abortedCts = new CancellationTokenSource();
8 references to _abortedCts
Microsoft.AspNetCore.Server.Kestrel.Core (8)
Internal\Http\HttpProtocol.cs (8)
311if (_connectionAborted && _abortedCts == null) 316if (_abortedCts == null) 321return _abortedCts.Token; 433if (!_connectionAborted && _abortedCts is not null) 437var resetSuccess = _abortedCts.TryReset(); 492if (_abortedCts != null && !_preventRequestAbortedCancellation) 494localAbortCts = _abortedCts; 519shouldScheduleCancellation = _abortedCts != null && !_preventRequestAbortedCancellation;