3 writes to _connectionAborted
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http\HttpProtocol.cs (1)
503
_connectionAborted
= true;
Internal\Http2\Http2Stream.cs (1)
132
_connectionAborted
= false;
Internal\Http3\Http3Stream.cs (1)
924
_connectionAborted
= false;
10 references to _connectionAborted
Microsoft.AspNetCore.Server.Kestrel.Core (10)
Internal\Http\HttpProtocol.cs (9)
293
if (
_connectionAborted
&& _abortedCts == null)
497
if (
_connectionAborted
)
523
if (
_connectionAborted
)
692
if (!
_connectionAborted
&& !VerifyResponseContentLength(out var lengthException))
704
if (!
_connectionAborted
)
715
if ((ex is OperationCanceledException || ex is IOException) &&
_connectionAborted
)
745
if (!
_connectionAborted
)
776
if (!
_connectionAborted
&& _requestRejectedException == null && !messageBody.IsEmpty)
1026
if (!
_connectionAborted
)
Internal\Http2\Http2Stream.cs (1)
127
public bool CanReuse => !
_connectionAborted
&& HasResponseCompleted;