// // System.Diagnostics.DiagnosticsConfigurationHandler.cs // // Author: // John R. Hicks // // (C) 2002 // using System; using System.Configuration; using System.Xml; namespace System.Diagnostics { /// /// The configuration section handler for the diagnostics section of /// the configuration file. The section handler participates in the /// resolution of configuration settings between the <diagnostics> /// and </diagnostics> portion of the .config file. /// public class DiagnosticsConfigurationHandler : IConfigurationSectionHandler { /// /// Initializes a new instance of the /// /// DiagnosticsConfigurationHandler class. /// public DiagnosticsConfigurationHandler() { } /// /// Parses the configuration settings between the /// <diagnostics> and </diagnostics> portion of the /// .config file to populate the values of the object and return it. /// /// /// Reference to the "default" value provided by the parent /// IConfigurationSectionHandler. /// /// /// [To be supplied] /// /// /// [To be supplied] /// public virtual object Create( object parent, object configContext, XmlNode section) { throw new NotImplementedException(); } ~DiagnosticsConfigurationHandler() { } } }