8 instantiations of BooleanSwitch
System.Private.Xml (2)
System\Xml\DiagnosticsSwitches.cs (2)
14s_keepTempFiles ??= new BooleanSwitch("XmlSerialization.Compilation", "Keep XmlSerialization generated (temp) files."); 17s_nonRecursiveTypeLoading ??= new BooleanSwitch("XmlSerialization.NonRecursiveTypeLoading", "Turn on non-recursive algorithm generating XmlMappings for CLR types.");
System.Windows.Forms (6)
misc\CoreSwitches.cs (1)
10public static BooleanSwitch PerfTrack => s_perfTrack ??= new BooleanSwitch("PERFTRACK", "Debug performance critical sections.");
System\Windows\Forms\ActiveX\AxHost.cs (1)
30private static readonly BooleanSwitch s_axAlwaysSaveSwitch = new(
System\Windows\Forms\Control.cs (2)
51private static readonly BooleanSwitch s_bufferPinkRect = new( 54private static readonly BooleanSwitch s_bufferDisabled = new(
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
23= new("PbrsAssertProps", "PropertyBrowser : Assert on broken properties");
System\Windows\Forms\NativeWindow.cs (1)
18= new("AlwaysUseNormalWndProc", "Skips checking for the debugger when choosing the debuggable WndProc handler");
16 references to BooleanSwitch
netstandard (1)
netstandard.cs (1)
618[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.BooleanSwitch))]
System (1)
src\runtime\src\libraries\shims\System\ref\System.cs (1)
474[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Diagnostics.BooleanSwitch))]
System.Configuration.ConfigurationManager (2)
System\Diagnostics\TraceUtils.cs (2)
156case nameof(BooleanSwitch): 157return typeof(BooleanSwitch);
System.Diagnostics.TraceSource (1)
System\Diagnostics\BooleanSwitch.cs (1)
17/// <para>Initializes a new instance of the <see cref='System.Diagnostics.BooleanSwitch'/>
System.Private.Xml (4)
System\Xml\DiagnosticsSwitches.cs (4)
10private static BooleanSwitch? s_keepTempFiles; 11private static BooleanSwitch? s_nonRecursiveTypeLoading; 13public static BooleanSwitch KeepTempFiles => 16public static BooleanSwitch NonRecursiveTypeLoading =>
System.Windows.Forms (7)
misc\CoreSwitches.cs (2)
9private static BooleanSwitch? s_perfTrack; 10public static BooleanSwitch PerfTrack => s_perfTrack ??= new BooleanSwitch("PERFTRACK", "Debug performance critical sections.");
System\Windows\Forms\ActiveX\AxHost.cs (1)
30private static readonly BooleanSwitch s_axAlwaysSaveSwitch = new(
System\Windows\Forms\Control.cs (2)
51private static readonly BooleanSwitch s_bufferPinkRect = new( 54private static readonly BooleanSwitch s_bufferDisabled = new(
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridEntry.cs (1)
22private static readonly BooleanSwitch s_pbrsAssertPropsSwitch
System\Windows\Forms\NativeWindow.cs (1)
17private static BooleanSwitch AlwaysUseNormalWndProc { get; }