DictionarySectionHandler.Create(Object, Object, XmlNode) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Creates a new configuration handler and adds it to the section-handler collection based on the specified parameters.
public:
virtual System::Object ^ Create(System::Object ^ parent, System::Object ^ context, System::Xml::XmlNode ^ section);
public virtual object Create (object parent, object context, System.Xml.XmlNode section);
abstract member Create : obj * obj * System.Xml.XmlNode -> obj
override this.Create : obj * obj * System.Xml.XmlNode -> obj
Public Overridable Function Create (parent As Object, context As Object, section As XmlNode) As Object
Parameters
- parent
- Object
Parent object.
- context
- Object
Configuration context object.
- section
- XmlNode
Section XML node.
Returns
A configuration object.
Implements
Remarks
The parent
object parameter acts as the configuration settings in the corresponding parent configuration section. The context
object parameter is the virtual path for which the configuration section handler computes configuration values. Normally this parameter is reserved and is null
. The section
parameter is the XmlNode that contains the configuration information to be handled. The section
parameter provides direct access to the XML contents of the configuration section.