2 writes to _abortedCts
Microsoft.AspNetCore.Server.Kestrel.Core (2)
Internal\Http\HttpProtocol.cs (2)
301
_abortedCts
= new CancellationTokenSource();
421
_abortedCts
= null;
8 references to _abortedCts
Microsoft.AspNetCore.Server.Kestrel.Core (8)
Internal\Http\HttpProtocol.cs (8)
294
if (_connectionAborted &&
_abortedCts
== null)
299
if (
_abortedCts
== null)
304
return
_abortedCts
.Token;
418
if (
_abortedCts
?.TryReset() == false)
420
localAbortCts =
_abortedCts
;
477
if (
_abortedCts
!= null && !_preventRequestAbortedCancellation)
479
localAbortCts =
_abortedCts
;
504
shouldScheduleCancellation =
_abortedCts
!= null && !_preventRequestAbortedCancellation;