2 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)
196
TraceSwitch perfCtrSwitch = new
TraceSwitch
("ConnectionPoolPerformanceCounterDetail", "level of detail to track with connection pool performance counters");
18 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)
158
case nameof(
TraceSwitch
):
159
return typeof(
TraceSwitch
);
System.Data.OleDb (4)
AdapterSwitches.cs (3)
12
private static
TraceSwitch
? _dataSchema;
14
internal static
TraceSwitch
DataSchema
18
TraceSwitch
? dataSchema = _dataSchema;
System\Data\ProviderBase\DbConnectionPoolCounters.cs (1)
196
TraceSwitch
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)
26
public static
TraceSwitch
DGEditColumnEditing => throw new PlatformNotSupportedException();
System.Windows.Forms.Primitives (4)
System\Diagnostics\TraceSwitchExtensions.cs (4)
13
public static void TraceVerbose(this
TraceSwitch
? traceSwitch, string message)
22
public static void TraceVerbose(this
TraceSwitch
? traceSwitch, [InterpolatedStringHandlerArgument(nameof(traceSwitch))] ref TraceVerboseInterpolatedStringHandler message)
32
/// <see cref="TraceVerbose(
TraceSwitch
?, ref TraceVerboseInterpolatedStringHandler)"/>
64
public TraceVerboseInterpolatedStringHandler(int literalLength, int formattedCount,
TraceSwitch
? traceSwitch, out bool shouldAppend)