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)
293
if (_connectionAborted &&
_abortedCts
== null)
298
if (
_abortedCts
== null)
303
return
_abortedCts
.Token;
415
if (!_connectionAborted &&
_abortedCts
is not null)
419
var resetSuccess =
_abortedCts
.TryReset();
474
if (
_abortedCts
!= null && !_preventRequestAbortedCancellation)
476
localAbortCts =
_abortedCts
;
501
shouldScheduleCancellation =
_abortedCts
!= null && !_preventRequestAbortedCancellation;