IConfigurationSectionHandler.cs 1.1 KB

123456789101112131415161718192021222324252627
  1. //
  2. // System.Configuration.IConfigurationSectionHandler.cs
  3. //
  4. // Author:
  5. // Christopher Podurgiel ([email protected])
  6. //
  7. // (C) Chris Podurgiel
  8. //
  9. using System;
  10. using System.Xml;
  11. namespace System.Configuration
  12. {
  13. /// <summary>
  14. /// Summary description for IConfigurationSectionHandler.
  15. /// </summary>
  16. public interface IConfigurationSectionHandler
  17. {
  18. /// <summary>
  19. /// Creates a new configuration handler and adds the specified configuration object to the collection.
  20. /// </summary>
  21. /// <param name="parent">Composed from the configuration settings in a corresponding parent configuration section.</param>
  22. /// <param name="configContext">Provides access to the virtual path for which the configuration section handler computes configuration values. Normally this parameter is reserved and is null.</param>
  23. /// <param name="section">The XML node that contains the configuration information to be handled. section provides direct access to the XML contents of the configuration section.</param>
  24. /// <returns></returns>
  25. object Create(object parent, object configContext, XmlNode section);
  26. }
  27. }