16 writes to AllowSynchronousIO
Binding.Http.IntegrationTests (1)
MtomBindingTestHelper.cs (1)
46serverOptions.AllowSynchronousIO = true;
InMemory.FunctionalTests (15)
RequestTests.cs (2)
1782ServerOptions = { AllowSynchronousIO = false } 1827ServerOptions = { AllowSynchronousIO = true }
ResponseTests.cs (13)
954ServerOptions = { AllowSynchronousIO = true } 1034ServerOptions = { AllowSynchronousIO = true } 1499var serviceContext = new TestServiceContext(LoggerFactory) { ServerOptions = { AllowSynchronousIO = true } }; 1532var serviceContext = new TestServiceContext(LoggerFactory) { ServerOptions = { AllowSynchronousIO = true } }; 1563var serviceContext = new TestServiceContext(LoggerFactory) { ServerOptions = { AllowSynchronousIO = true } }; 1599var serviceContext = new TestServiceContext(LoggerFactory) { ServerOptions = { AllowSynchronousIO = true } }; 1643var serviceContext = new TestServiceContext(LoggerFactory) { ServerOptions = { AllowSynchronousIO = true } }; 1897var serviceContext = new TestServiceContext(LoggerFactory) { ServerOptions = { AllowSynchronousIO = true } }; 1939var serviceContext = new TestServiceContext(LoggerFactory) { ServerOptions = { AllowSynchronousIO = true } }; 1981var serviceContext = new TestServiceContext(LoggerFactory) { ServerOptions = { AllowSynchronousIO = true } }; 2026var serviceContext = new TestServiceContext(LoggerFactory) { ServerOptions = { AllowSynchronousIO = true } }; 3662ServerOptions = { AllowSynchronousIO = true } 3697ServerOptions = { AllowSynchronousIO = false }
4 references to AllowSynchronousIO
Microsoft.AspNetCore.Server.Kestrel.Core (3)
Internal\Http\HttpProtocol.cs (1)
358AllowSynchronousIO = ServerOptions.AllowSynchronousIO;
KestrelServerOptions.cs (2)
339writer.WritePropertyName(nameof(AllowSynchronousIO)); 340writer.WriteBooleanValue(AllowSynchronousIO);
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (1)
KestrelServerOptionsTests.cs (1)
22Assert.False(options.AllowSynchronousIO);