| File: System\Diagnostics\DiagnosticsConfiguration.cs | Web Access |
| Project: src\runtime\src\libraries\System.Diagnostics.TraceSource\src\System.Diagnostics.TraceSource.csproj (System.Diagnostics.TraceSource) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; using System.Collections; namespace System.Diagnostics { internal static class DiagnosticsConfiguration { // setting for TraceInternal.AutoFlush internal static bool AutoFlush => false; // the default // setting for TraceInternal.UseGlobalLock internal static bool UseGlobalLock => true; // the default // setting for TraceInternal.IndentSize internal static int IndentSize => 4; // the default internal static bool AssertUIEnabled => true; // the default internal static string LogFileName => string.Empty; // the default } }