1 write to _abortedCts
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.cs (1)
300_abortedCts = new CancellationTokenSource();
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; 415if (!_connectionAborted && _abortedCts is not null) 419var resetSuccess = _abortedCts.TryReset(); 474if (_abortedCts != null && !_preventRequestAbortedCancellation) 476localAbortCts = _abortedCts; 501shouldScheduleCancellation = _abortedCts != null && !_preventRequestAbortedCancellation;