2 writes to _abortedCts
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http\HttpProtocol.cs (2)
300_abortedCts = new CancellationTokenSource(); 419_abortedCts = null;
8 references to _abortedCts
Microsoft.AspNetCore.Server.Kestrel.Core (8)
Internal\Http\HttpProtocol.cs (8)
293if (_connectionAborted && _abortedCts == null) 298if (_abortedCts == null) 303return _abortedCts.Token; 416if (_abortedCts?.TryReset() == false) 418localAbortCts = _abortedCts; 475if (_abortedCts != null && !_preventRequestAbortedCancellation) 477localAbortCts = _abortedCts; 502shouldScheduleCancellation = _abortedCts != null && !_preventRequestAbortedCancellation;