1 implementation of IHttpBodyControlFeature
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.Generated.cs (1)
34IHttpBodyControlFeature,
16 references to IHttpBodyControlFeature
Microsoft.AspNetCore.Rewrite (1)
UrlActions\CustomResponseAction.cs (1)
34context.HttpContext.Features.Get<IHttpBodyControlFeature>()?.AllowSynchronousIO = true;
Microsoft.AspNetCore.Server.Kestrel.Core (15)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
192bool IHttpBodyControlFeature.AllowSynchronousIO
Internal\Http\HttpProtocol.Generated.cs (9)
53internal protected IHttpBodyControlFeature? _currentIHttpBodyControlFeature; 316else if (key == typeof(IHttpBodyControlFeature)) 468else if (key == typeof(IHttpBodyControlFeature)) 470_currentIHttpBodyControlFeature = (IHttpBodyControlFeature?)value; 622else if (typeof(TFeature) == typeof(IHttpBodyControlFeature)) 624feature = Unsafe.As<IHttpBodyControlFeature?, TFeature?>(ref _currentIHttpBodyControlFeature); 782else if (typeof(TFeature) == typeof(IHttpBodyControlFeature)) 784_currentIHttpBodyControlFeature = Unsafe.As<TFeature?, IHttpBodyControlFeature?>(ref feature); 932yield return new KeyValuePair<Type, object>(typeof(IHttpBodyControlFeature), _currentIHttpBodyControlFeature);
Internal\Http\HttpRequestStream.cs (2)
14private readonly IHttpBodyControlFeature _bodyControl; 16public HttpRequestStream(IHttpBodyControlFeature bodyControl, HttpRequestPipeReader pipeReader)
Internal\Http\HttpResponseStream.cs (2)
12private readonly IHttpBodyControlFeature _bodyControl; 14public HttpResponseStream(IHttpBodyControlFeature bodyControl, HttpResponsePipeWriter pipeWriter)
Internal\Infrastructure\BodyControl.cs (1)
26public BodyControl(IHttpBodyControlFeature bodyControl, IHttpResponseControl responseControl)