CompModSwitches.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / fx / src / Services / Web / System / ComponentModel / CompModSwitches.cs / 1305376 / CompModSwitches.cs

                             
//------------------------------------------------------------------------------
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
//  
//-----------------------------------------------------------------------------
 
namespace System.ComponentModel { 
    using System.Diagnostics;
 
    /// 
    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; 
            }
        } 
 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.
 
//------------------------------------------------------------------------------
// 
//     Copyright (c) Microsoft Corporation.  All rights reserved.
//  
//-----------------------------------------------------------------------------
 
namespace System.ComponentModel { 
    using System.Diagnostics;
 
    /// 
    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; 
            }
        } 
 
    }
} 

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.
// Copyright (c) Microsoft Corporation. All rights reserved.

                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK