1 write to _bodyControl
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.cs (1)
328
_bodyControl
= new BodyControl(bodyControl: this, this);
8 references to _bodyControl
Microsoft.AspNetCore.Server.Kestrel.Core (8)
Internal\Http\HttpProtocol.cs (5)
326
if (
_bodyControl
== null)
331
(RequestBody, ResponseBody, RequestBodyPipeReader, ResponseBodyPipeWriter) =
_bodyControl
.Start(messageBody);
515
_bodyControl
?.Abort(abortReason);
731
Debug.Assert(
_bodyControl
!= null);
732
await
_bodyControl
.StopAsync();
Internal\Http\HttpProtocol.FeatureCollection.cs (3)
108
bool IHttpRequestBodyDetectionFeature.CanHaveBody =>
_bodyControl
!.CanHaveBody;
289
return
_bodyControl
!.Upgrade();
313
return
_bodyControl
!.AcceptConnect();