C# Class PHP.Core.ConfigurationSectionHandler

The configuration handler used by configuration system to parse the phpNet section of Machine.config and Web.config files.
Inheritance: IConfigurationSectionHandler
Mostra file Open project: jadu/Phalanger

Public Methods

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

GetUserEntryPoint is called by .NET config system when a configuration is needed to be extracted from a XML config file.

Private Methods

Method Description
Create ( PhpConfigurationContext parent, System.Web.Configuration.HttpConfigurationContext context, XmlNode section ) : PhpConfigurationContext
GetConfig ( PHP.Core.ApplicationContext appContext, string sectionName ) : PhpConfigurationContext

Gets a configuration context from the ASP.NET cache.

Method Details

Create() public method

GetUserEntryPoint is called by .NET config system when a configuration is needed to be extracted from a XML config file.
public Create ( object parent, object configContext, XmlNode section ) : object
parent object /// The configuration settings in the parent configuration section. /// Contains config data from already parsed sections. ///
configContext object /// An when called from the ASP.NET config. Otherwise, a null reference. ///
section System.Xml.XmlNode Provides direct access to the XML contents of the configuration section.
return object