2 writes to _abortedCts
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http\HttpProtocol.cs (2)
301_abortedCts = new CancellationTokenSource(); 421_abortedCts = null;
8 references to _abortedCts
Microsoft.AspNetCore.Server.Kestrel.Core (8)
Internal\Http\HttpProtocol.cs (8)
294if (_connectionAborted && _abortedCts == null) 299if (_abortedCts == null) 304return _abortedCts.Token; 418if (_abortedCts?.TryReset() == false) 420localAbortCts = _abortedCts; 477if (_abortedCts != null && !_preventRequestAbortedCancellation) 479localAbortCts = _abortedCts; 504shouldScheduleCancellation = _abortedCts != null && !_preventRequestAbortedCancellation;