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)
293
if (_connectionAborted &&
_abortedCts
== null)
298
if (
_abortedCts
== null)
303
return
_abortedCts
.Token;
416
if (
_abortedCts
?.TryReset() == false)
418
localAbortCts =
_abortedCts
;
475
if (
_abortedCts
!= null && !_preventRequestAbortedCancellation)
477
localAbortCts =
_abortedCts
;
502
shouldScheduleCancellation =
_abortedCts
!= null && !_preventRequestAbortedCancellation;