2 writes to _abortedCts
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http\HttpProtocol.cs (2)
294_abortedCts = new CancellationTokenSource(); 414_abortedCts = null;
8 references to _abortedCts
Microsoft.AspNetCore.Server.Kestrel.Core (8)
Internal\Http\HttpProtocol.cs (8)
287if (_connectionAborted && _abortedCts == null) 292if (_abortedCts == null) 297return _abortedCts.Token; 411if (_abortedCts?.TryReset() == false) 413localAbortCts = _abortedCts; 470if (_abortedCts != null && !_preventRequestAbortedCancellation) 472localAbortCts = _abortedCts; 497shouldScheduleCancellation = _abortedCts != null && !_preventRequestAbortedCancellation;