6 instantiations of TraceSwitch
System.Data.OleDb (2)
AdapterSwitches.cs (1)
21_dataSchema = dataSchema = new TraceSwitch("Data.Schema", "Enable tracing for schema actions.");
System\Data\ProviderBase\DbConnectionPoolCounters.cs (1)
196TraceSwitch perfCtrSwitch = new TraceSwitch("ConnectionPoolPerformanceCounterDetail", "level of detail to track with connection pool performance counters");
WindowsFormsIntegration (4)
System\Windows\Integration\ElementHost.cs (1)
1452private static readonly TraceSwitch _traceLayout = new TraceSwitch("ElementHostLayout", "Tracks ElementHost layout information.");
System\Windows\Integration\HostUtils.cs (1)
33imeModeTraceSwitch = new TraceSwitch("ImeMode", "ImeMode Trace Switch");
System\Windows\Integration\WindowsFormsHost.cs (2)
702internal static readonly TraceSwitch _traceHandle = new TraceSwitch("WindowsFormsHostHandle", "Tracks WindowsFormsHost handle information."); 703internal static readonly TraceSwitch _traceLayout = new TraceSwitch("WindowsFormsHostLayout", "Tracks WindowsFormsHost layout information.");
23 references to TraceSwitch
netstandard (1)
netstandard.cs (1)
711[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.TraceSwitch))]
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
549[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.TraceSwitch))]
System.Configuration.ConfigurationManager (2)
System\Diagnostics\TraceUtils.cs (2)
158case nameof(TraceSwitch): 159return typeof(TraceSwitch);
System.Data.OleDb (4)
AdapterSwitches.cs (3)
12private static TraceSwitch? _dataSchema; 14internal static TraceSwitch DataSchema 18TraceSwitch? dataSchema = _dataSchema;
System\Data\ProviderBase\DbConnectionPoolCounters.cs (1)
196TraceSwitch perfCtrSwitch = new TraceSwitch("ConnectionPoolPerformanceCounterDetail", "level of detail to track with connection pool performance counters");
System.Diagnostics.TraceSource (5)
System\Diagnostics\TraceSwitch.cs (5)
16/// <para>Initializes a new instance of the <see cref='System.Diagnostics.TraceSwitch'/> class.</para> 47/// indicating whether the <see cref='System.Diagnostics.TraceSwitch.Level'/> is set to 55/// indicating whether the <see cref='System.Diagnostics.TraceSwitch.Level'/> is set to 62/// indicating whether the <see cref='System.Diagnostics.TraceSwitch.Level'/> is set to 69/// indicating whether the <see cref='System.Diagnostics.TraceSwitch.Level'/> is set to
System.Windows.Forms (1)
System\Windows\Forms\Controls\Unsupported\DataGrid\DataGridColumnStyle.CompModSwitches.cs (1)
26public static TraceSwitch DGEditColumnEditing => throw new PlatformNotSupportedException();
System.Windows.Forms.Primitives (4)
System\Diagnostics\TraceSwitchExtensions.cs (4)
13public static void TraceVerbose(this TraceSwitch? traceSwitch, string message) 22public static void TraceVerbose(this TraceSwitch? traceSwitch, [InterpolatedStringHandlerArgument(nameof(traceSwitch))] ref TraceVerboseInterpolatedStringHandler message) 32/// <see cref="TraceVerbose(TraceSwitch?, ref TraceVerboseInterpolatedStringHandler)"/> 64public TraceVerboseInterpolatedStringHandler(int literalLength, int formattedCount, TraceSwitch? traceSwitch, out bool shouldAppend)
WindowsFormsIntegration (5)
System\Windows\Integration\ElementHost.cs (1)
1452private static readonly TraceSwitch _traceLayout = new TraceSwitch("ElementHostLayout", "Tracks ElementHost layout information.");
System\Windows\Integration\HostUtils.cs (2)
22private static TraceSwitch imeModeTraceSwitch; 27public static TraceSwitch ImeMode
System\Windows\Integration\WindowsFormsHost.cs (2)
702internal static readonly TraceSwitch _traceHandle = new TraceSwitch("WindowsFormsHostHandle", "Tracks WindowsFormsHost handle information."); 703internal static readonly TraceSwitch _traceLayout = new TraceSwitch("WindowsFormsHostLayout", "Tracks WindowsFormsHost layout information.");