4 implementations of AllowSynchronousIO
Microsoft.AspNetCore.Server.HttpSys (1)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
616bool IHttpBodyControlFeature.AllowSynchronousIO
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.FeatureCollection.cs (1)
438bool IHttpBodyControlFeature.AllowSynchronousIO { get; set; }
Microsoft.AspNetCore.Server.Kestrel.Core (1)
Internal\Http\HttpProtocol.FeatureCollection.cs (1)
192bool IHttpBodyControlFeature.AllowSynchronousIO
Microsoft.AspNetCore.TestHost (1)
HttpContextBuilder.cs (1)
59public bool AllowSynchronousIO { get; set; }
2 writes to AllowSynchronousIO
Microsoft.AspNetCore.Rewrite (1)
UrlActions\CustomResponseAction.cs (1)
34context.HttpContext.Features.Get<IHttpBodyControlFeature>()?.AllowSynchronousIO = true;
Microsoft.AspNetCore.Server.IIS (1)
Core\IISHttpContext.cs (1)
93((IHttpBodyControlFeature)this).AllowSynchronousIO = _options.AllowSynchronousIO;
6 references to AllowSynchronousIO
Microsoft.AspNetCore.Server.IIS (3)
Core\EmptyStream.cs (1)
32if (!_bodyControl.AllowSynchronousIO)
Core\HttpRequestStream.cs (1)
26if (!_bodyControl.AllowSynchronousIO)
Core\HttpResponseStream.cs (1)
35if (!_bodyControl.AllowSynchronousIO)
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http\HttpRequestStream.cs (1)
54if (!_bodyControl.AllowSynchronousIO)
Internal\Http\HttpResponseStream.cs (2)
51if (!_bodyControl.AllowSynchronousIO) 75if (!_bodyControl.AllowSynchronousIO)