5 writes to AllowSynchronousIO
Microsoft.AspNetCore.Server.HttpSys (2)
RequestProcessing\RequestContext.cs (1)
27AllowSynchronousIO = server.Options.AllowSynchronousIO;
RequestProcessing\RequestContext.FeatureCollection.cs (1)
583set => AllowSynchronousIO = value;
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (3)
Listener\RequestBodyTests.cs (1)
33context.AllowSynchronousIO = true;
Listener\ResponseBodyTests.cs (2)
35context.AllowSynchronousIO = true; 376context.AllowSynchronousIO = true;
6 references to AllowSynchronousIO
Microsoft.AspNetCore.Server.HttpSys (4)
RequestProcessing\RequestContext.FeatureCollection.cs (1)
582get => AllowSynchronousIO;
RequestProcessing\RequestStream.cs (1)
101if (!RequestContext.AllowSynchronousIO)
RequestProcessing\ResponseBody.cs (2)
93if (!RequestContext.AllowSynchronousIO) 523if (!RequestContext.AllowSynchronousIO)
Microsoft.AspNetCore.Server.HttpSys.FunctionalTests (2)
Listener\RequestBodyTests.cs (1)
35Assert.True(context.AllowSynchronousIO);
Listener\ResponseBodyTests.cs (1)
29Assert.False(context.AllowSynchronousIO);