IgnoreSectionHandler
Provides a legacy section-handler definition for configuration sections that are not handled by the Configuration types.
using System.Xml;
namespace System.Configuration
{
public class IgnoreSectionHandler : IConfigurationSectionHandler
{
public virtual object Create(object parent, object configContext, XmlNode section)
{
return null;
}
}
}