NameValueSectionHandler.Create(Object, Object, XmlNode) Method

Definition

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 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 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 object that contains the configuration information to be handled. The section parameter provides direct access to the XML contents of the configuration section.

Applies to