9 writes to MaxStackTraceLength
Microsoft.Extensions.Telemetry (3)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\BindingExtensions.g.cs (2)
327instance.MaxStackTraceLength = ParseInt(value20, () => configuration.GetSection("MaxStackTraceLength").Path); 331instance.MaxStackTraceLength = default;
Logging\ExtendedLoggerFactory.cs (1)
294MaxStackTraceLength = Config.MaxStackTraceLength,
Microsoft.Extensions.Telemetry.Tests (6)
Logging\ExtendedLoggerTests.cs (1)
434MaxStackTraceLength = 4096,
Logging\LoggerEnrichmentOptionsTests.cs (5)
21o.MaxStackTraceLength = TestValue; 35o.MaxStackTraceLength = 2048; 38o.MaxStackTraceLength = 32768; 41o.MaxStackTraceLength = 2047; 44o.MaxStackTraceLength = 32769;
5 references to MaxStackTraceLength
Microsoft.Extensions.Telemetry (3)
Generated\Basic.CompilerLog.Util\Basic.CompilerLog.Util.Impl.BasicGeneratedFilesAnalyzerReference\Validators.g.cs (1)
104if (!global::System.ComponentModel.DataAnnotations.Validator.TryValidateValue(options.MaxStackTraceLength, context, validationResults, validationAttributes))
Logging\ExtendedLoggerFactory.cs (1)
312enrichmentOptions.MaxStackTraceLength,
Logging\LoggerEnrichmentOptions.cs (1)
26/// defaults to 4096 characters and can be modified by setting the <see cref="MaxStackTraceLength"/> property.
Microsoft.Extensions.Telemetry.Tests (2)
Logging\LoggerEnrichmentOptionsTests.cs (2)
17Assert.Equal(4096, o.MaxStackTraceLength); 24Assert.Equal(TestValue, o.MaxStackTraceLength);