12 references to HasStarted
Microsoft.AspNetCore.Server.HttpSys (12)
RequestProcessing\Request.cs (1)
399
public bool CanDelegate => !(HasRequestBodyStarted || RequestContext.Response.
HasStarted
);
RequestProcessing\RequestContext.cs (2)
97
if (Response.
HasStarted
)
292
if (Response.
HasStarted
)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
751
if (!Response.
HasStarted
)
RequestProcessing\RequestContextOfT.cs (1)
71
if (Response.
HasStarted
)
RequestProcessing\Response.cs (2)
236
if (
HasStarted
)
285
Debug.Assert(!
HasStarted
, "HttpListenerResponse::SendHeaders()|SentHeaders is true.");
RequestProcessing\ResponseBody.cs (5)
121
var started = _requestContext.Response.
HasStarted
;
327
var started = _requestContext.Response.
HasStarted
;
528
if (count == 0 && _requestContext.Response.
HasStarted
)
580
if (count == 0 && _requestContext.Response.
HasStarted
)
620
var started = _requestContext.Response.
HasStarted
;