3 writes to _connectionAborted
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http\HttpProtocol.cs (1)
505
_connectionAborted
= true;
Internal\Http2\Http2Stream.cs (1)
132
_connectionAborted
= false;
Internal\Http3\Http3Stream.cs (1)
924
_connectionAborted
= false;
9 references to _connectionAborted
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Internal\Http\HttpProtocol.cs (8)
294
if (
_connectionAborted
&& _abortedCts == null)
499
if (
_connectionAborted
)
525
if (
_connectionAborted
)
694
if (!
_connectionAborted
&& !VerifyResponseContentLength(out var lengthException))
709
if ((ex is OperationCanceledException || ex is IOException) &&
_connectionAborted
)
739
if (!
_connectionAborted
)
770
if (!
_connectionAborted
&& _requestRejectedException == null && !messageBody.IsEmpty)
1020
if (!
_connectionAborted
)
Internal\Http2\Http2Stream.cs (1)
127
public bool CanReuse => !
_connectionAborted
&& HasResponseCompleted;