6 writes to ThrowOnCriticalErrors
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (6)
KestrelServerTests.cs (4)
49var testLogger = new TestApplicationErrorLogger { ThrowOnCriticalErrors = false }; 120var testLogger = new TestApplicationErrorLogger { ThrowOnCriticalErrors = false }; 220var testLogger = new TestApplicationErrorLogger { ThrowOnCriticalErrors = false }; 246var testLogger = new TestApplicationErrorLogger { ThrowOnCriticalErrors = false };
src\Servers\Kestrel\shared\test\KestrelTestLoggerProvider.cs (1)
13: this(new TestApplicationErrorLogger { ThrowOnCriticalErrors = throwOnCriticalErrors })
src\Servers\Kestrel\shared\test\TestApplicationErrorLoggerLoggedTest.cs (1)
23set => TestApplicationErrorLogger.ThrowOnCriticalErrors = value;
3 references to ThrowOnCriticalErrors
Microsoft.AspNetCore.Server.Kestrel.Core.Tests (3)
src\Servers\Kestrel\shared\test\TestApplicationErrorLogger.cs (2)
68if (logLevel == LogLevel.Critical && ThrowOnCriticalErrors && !exceptionIsIgnored) 74if (logLevel == LogLevel.Critical && ThrowOnCriticalErrors && !exceptionIsIgnored)
src\Servers\Kestrel\shared\test\TestApplicationErrorLoggerLoggedTest.cs (1)
22get => TestApplicationErrorLogger.ThrowOnCriticalErrors;