C# Class Spring.Context.Support.NamespaceParsersSectionHandler

Configuration section handler for the (recommended, Spring.NET standard) parsers config section.

Spring.NET allows the registration of custom configuration parsers that can be used to create simplified configuration schemas that better describe object definitions.

For example, Spring.NET uses this facility internally in order to define simplified schemas for various AOP, Data and Services definitions.

Inheritance: IConfigurationSectionHandler
显示文件 Open project: spring-projects/spring-net Class Usage Examples

Public Methods

Method Description
Create ( object parent, object configContext, XmlNode section ) : object

Registers parsers specified in the (recommended, Spring.NET standard) parsers config section with the NamespaceParserRegistry.

Private Methods

Method Description
GetRequiredAttributeValue ( XmlElement aliasElement, string requiredAttributeName, XmlNode section ) : string

Method Details

Create() public method

Registers parsers specified in the (recommended, Spring.NET standard) parsers config section with the NamespaceParserRegistry.
public Create ( object parent, object configContext, XmlNode section ) : object
parent object /// The configuration settings in a corresponding parent /// configuration section. ///
configContext object /// The configuration context when called from the ASP.NET /// configuration system. Otherwise, this parameter is reserved and /// is . ///
section System.Xml.XmlNode /// The for the section. ///
return object