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)
311
if (_connectionAborted &&
_abortedCts
== null)
316
if (
_abortedCts
== null)
321
return
_abortedCts
.Token;
433
if (!_connectionAborted &&
_abortedCts
is not null)
437
var resetSuccess =
_abortedCts
.TryReset();
492
if (
_abortedCts
!= null && !_preventRequestAbortedCancellation)
494
localAbortCts =
_abortedCts
;
519
shouldScheduleCancellation =
_abortedCts
!= null && !_preventRequestAbortedCancellation;