2 implementations of HasStarted
Microsoft.AspNetCore.Http (1)
Features\HttpResponseFeature.cs (1)
34public virtual bool HasStarted => false;
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
148bool IHttpResponseFeature.HasStarted => HasResponseStarted;
2 references to HasStarted
Microsoft.AspNetCore.Http (2)
Features\DefaultConnectionLifetimeNotificationFeature.cs (1)
32if (!_httpResponseFeature.HasStarted)
Internal\DefaultHttpResponse.cs (1)
119get { return HttpResponseFeature.HasStarted; }