3 writes to _connectionAborted
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http\HttpProtocol.cs (1)
498_connectionAborted = true;
Internal\Http2\Http2Stream.cs (1)
120_connectionAborted = false;
Internal\Http3\Http3Stream.cs (1)
913_connectionAborted = false;
9 references to _connectionAborted
Microsoft.AspNetCore.Server.Kestrel.Core (9)
Internal\Http\HttpProtocol.cs (8)
287if (_connectionAborted && _abortedCts == null) 492if (_connectionAborted) 518if (_connectionAborted) 687if (!_connectionAborted && !VerifyResponseContentLength(out var lengthException)) 702if ((ex is OperationCanceledException || ex is IOException) && _connectionAborted) 732if (!_connectionAborted) 763if (!_connectionAborted && _requestRejectedException == null && !messageBody.IsEmpty) 1013if (!_connectionAborted)
Internal\Http2\Http2Stream.cs (1)
115public bool CanReuse => !_connectionAborted && HasResponseCompleted;