IgnoreSectionHandler.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132
  1. //
  2. // System.Configuration.IgnoreSectionHandler.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 IgnoreSectionHandler.
  15. /// </summary>
  16. public class IgnoreSectionHandler : 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. public virtual object Create(object parent, object configContext, XmlNode section)
  26. {
  27. return null;
  28. }
  29. }
  30. }