4 writes to _responseState
Microsoft.AspNetCore.Server.HttpSys (4)
RequestProcessing\Response.cs (4)
51_responseState = ResponseState.Created; 222_responseState = ResponseState.Closed; 303_responseState = ResponseState.Started; 403_responseState = ResponseState.ComputedHeaders;
4 references to _responseState
Microsoft.AspNetCore.Server.HttpSys (4)
RequestProcessing\Response.cs (4)
117internal bool BodyIsFinished => _nativeStream?.IsDisposed ?? _responseState >= ResponseState.Closed; 215if (_aborted || _responseState >= ResponseState.Closed) 232get { return _responseState >= ResponseState.ComputedHeaders; } 241get { return _responseState >= ResponseState.Started; }