2 implementations of Body
Microsoft.AspNetCore.Http (1)
Features\HttpRequestFeature.cs (1)
52public Stream Body { get; set; }
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
82Stream IHttpRequestFeature.Body
1 write to Body
Microsoft.AspNetCore.Http (1)
Internal\DefaultHttpRequest.cs (1)
94set { HttpRequestFeature.Body = value; }
3 references to Body
Microsoft.AspNetCore.Http (1)
Internal\DefaultHttpRequest.cs (1)
93get { return HttpRequestFeature.Body; }
Microsoft.AspNetCore.Http.Features (2)
IHttpBodyControlFeature.cs (2)
7/// Controls the IO behavior for the <see cref="IHttpRequestFeature.Body"/> and <see cref="IHttpResponseFeature.Body"/> 12/// Gets or sets a value that controls whether synchronous IO is allowed for the <see cref="IHttpRequestFeature.Body"/> and <see cref="IHttpResponseFeature.Body"/>