DiagnosticsConfigurationHandler.cs 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. //
  2. // System.Diagnostics.DiagnosticsConfigurationHandler.cs
  3. //
  4. // Author:
  5. // John R. Hicks <[email protected]>
  6. //
  7. // (C) 2002
  8. //
  9. using System;
  10. using System.Configuration;
  11. using System.Xml;
  12. namespace System.Diagnostics
  13. {
  14. /// <summary>
  15. /// The configuration section handler for the diagnostics section of
  16. /// the configuration file. The section handler participates in the
  17. /// resolution of configuration settings between the &lt;diagnostics&gt;
  18. /// and &lt;/diagnostics&gt; portion of the .config file.
  19. /// </summary>
  20. public class DiagnosticsConfigurationHandler :
  21. IConfigurationSectionHandler
  22. {
  23. /// <summary>
  24. /// Initializes a new instance of the
  25. /// <see cref="DiagnosticsConfigurationHandler">
  26. /// DiagnosticsConfigurationHandler</see> class.
  27. /// </summary>
  28. public DiagnosticsConfigurationHandler()
  29. {
  30. }
  31. /// <summary>
  32. /// Parses the configuration settings between the
  33. /// &lt;diagnostics&gt; and &lt;/diagnostics&gt; portion of the
  34. /// .config file to populate the values of the object and return it.
  35. /// </summary>
  36. /// <param name="parent">
  37. /// Reference to the &quot;default&quot; value provided by the parent
  38. /// IConfigurationSectionHandler.
  39. /// </param>
  40. /// <param name="configContext">
  41. /// [To be supplied]
  42. /// </param>
  43. /// <param name="section">
  44. /// [To be supplied]
  45. /// </param>
  46. public virtual object Create(
  47. object parent,
  48. object configContext,
  49. XmlNode section)
  50. {
  51. throw new NotImplementedException();
  52. }
  53. ~DiagnosticsConfigurationHandler()
  54. {
  55. }
  56. }
  57. }