12 references to HasStarted
Microsoft.AspNetCore.Server.HttpSys (12)
RequestProcessing\Request.cs (1)
405
public bool CanDelegate => !(HasRequestBodyStarted || RequestContext.Response.
HasStarted
);
RequestProcessing\RequestContext.cs (2)
99
if (Response.
HasStarted
)
444
if (Response.
HasStarted
)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
757
if (!Response.
HasStarted
)
RequestProcessing\RequestContextOfT.cs (1)
70
if (Response.
HasStarted
)
RequestProcessing\Response.cs (2)
246
if (
HasStarted
)
301
Debug.Assert(!
HasStarted
, "HttpListenerResponse::SendHeaders()|SentHeaders is true.");
RequestProcessing\ResponseBody.cs (5)
121
var started = _requestContext.Response.
HasStarted
;
320
var started = _requestContext.Response.
HasStarted
;
526
if (count == 0 && _requestContext.Response.
HasStarted
)
578
if (count == 0 && _requestContext.Response.
HasStarted
)
618
var started = _requestContext.Response.
HasStarted
;