IgnoreSectionHandler.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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. /// IgnoreSectionHandler Constructor
  20. /// </summary>
  21. public IgnoreSectionHandler()
  22. {
  23. //
  24. // TODO: Add constructor logic here
  25. //
  26. }
  27. /// <summary>
  28. /// Creates a new configuration handler and adds the specified configuration object to the collection.
  29. /// </summary>
  30. /// <param name="parent">Composed from the configuration settings in a corresponding parent configuration section.</param>
  31. /// <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>
  32. /// <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>
  33. /// <returns></returns>
  34. public virtual object Create(object parent, object configContext, XmlNode section)
  35. {
  36. //FIXME: Add Implemetation code here.
  37. return null;
  38. }
  39. }
  40. }