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