CastleSectionHandler
Implementation of IConfigurationSectionHandler.
Do not support configuration inheritance.
using System.Xml;
namespace Castle.Windsor.Configuration.AppDomain
{
public class CastleSectionHandler
{
public object Create(object parent, object configContext, XmlNode section)
{
return section;
}
}
}