DiagnosticSection.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ WCF / WCF / 3.5.30729.1 / untmp / Orcas / SP / ndp / cdf / src / WCF / ServiceModel / System / ServiceModel / Configuration / DiagnosticSection.cs / 1 / DiagnosticSection.cs

                            //------------------------------------------------------------------------------ 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//-----------------------------------------------------------------------------

namespace System.ServiceModel.Configuration 
{
    using System.Configuration; 
    using System.ServiceModel.Channels; 
    using System.ServiceModel.Diagnostics;
    using System.Globalization; 
    using System.Security;

    public sealed partial class DiagnosticSection : ConfigurationSection
    { 
        // These three constructors are used by the configuration system.
        public DiagnosticSection() : base() 
        { 
        }
 
        [ConfigurationProperty(ConfigurationStrings.WmiProviderEnabled, DefaultValue = false)]
        public bool WmiProviderEnabled
        {
            get { return (bool)base[ConfigurationStrings.WmiProviderEnabled]; } 
            set { base[ConfigurationStrings.WmiProviderEnabled] = value; }
        } 
 
        [ConfigurationProperty(ConfigurationStrings.MessageLogging, Options = ConfigurationPropertyOptions.None)]
        public MessageLoggingElement MessageLogging 
        {
            get {return (MessageLoggingElement) base[ConfigurationStrings.MessageLogging]; }
        }
 
        [ConfigurationProperty(ConfigurationStrings.PerformanceCounters, DefaultValue = PerformanceCounterScope.Default)]
        [ServiceModelEnumValidator(typeof(PerformanceCounterScopeHelper))] 
        public PerformanceCounterScope PerformanceCounters 
        {
            get { return (PerformanceCounterScope)base[ConfigurationStrings.PerformanceCounters]; } 
            set {base[ConfigurationStrings.PerformanceCounters] = value; }
        }

        internal static DiagnosticSection GetSection() 
        {
            return (DiagnosticSection)ConfigurationHelpers.GetSection(ConfigurationStrings.DiagnosticSectionPath); 
        } 

        ///  
        /// Critical - calls Critical method UnsafeGetSection which elevates in order to fetch config
        ///            caller must guard access to resultant config section
        /// 
        [SecurityCritical] 
        internal static DiagnosticSection UnsafeGetSection()
        { 
            return (DiagnosticSection)ConfigurationHelpers.UnsafeGetSection(ConfigurationStrings.DiagnosticSectionPath); 
        }
 

    }
}
 

 

// 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