File: System\ComponentModel\CompModSwitches.cs
Project: ndp\cdf\src\NetFx20\System.Web.Services\System.Web.Services.csproj (System.Web.Services)

//------------------------------------------------------------------------------
// <copyright file="Component.cs" company="Microsoft">
//     Copyright (c) Microsoft Corporation.  All rights reserved.
// </copyright>                                                                
//------------------------------------------------------------------------------
 
namespace System.ComponentModel {
    using System.Diagnostics;
 
    /// <internalonly/>
    internal sealed class CompModSwitches {
        private static BooleanSwitch dynamicDiscoVirtualSearch;
        private static TraceSwitch dynamicDiscoSearcher;
        private static BooleanSwitch disableRemoteDebugging;
        private static TraceSwitch remote;
 
        public static BooleanSwitch DisableRemoteDebugging {
            get {
                if (disableRemoteDebugging == null) {
                    disableRemoteDebugging = new BooleanSwitch("Remote.Disable", "Disable remote debugging for web methods.");
                }
                return disableRemoteDebugging;
            }
        }         
                
        public static TraceSwitch DynamicDiscoverySearcher {
            get {
                if (dynamicDiscoSearcher == null) {
                    dynamicDiscoSearcher = new TraceSwitch("DynamicDiscoverySearcher", "Enable tracing for the DynamicDiscoverySearcher class.");
                }
                return dynamicDiscoSearcher;
            }
        }                                                                                
                                                                        
        public static BooleanSwitch DynamicDiscoveryVirtualSearch {
            get {
                if (dynamicDiscoVirtualSearch == null) {
                    dynamicDiscoVirtualSearch = new BooleanSwitch("DynamicDiscoveryVirtualSearch", "Force virtual search for DiscoveryRequestHandler class.");
                }
                return dynamicDiscoVirtualSearch;
            }
        }                                                                                                                                                
        
        public static TraceSwitch Remote {
            get {
                if (remote == null) {
                    remote = new TraceSwitch("Microsoft.WFC.Remote", "Enable tracing for remote method calls.");
                }
                return remote;
            }
        }
        
    }
}