XmlHierarchyConfigurator CreateObjectFromXml Method Apache log4net™ SDK Documentation
Creates an object as specified in XML.

Namespace: log4net.Repository.Hierarchy
Assembly: log4net (in log4net.dll) Version: 1.2.15.0 (1.2.15.0)
Syntax

protected Object CreateObjectFromXml(
	XmlElement element,
	Type defaultTargetType,
	Type typeConstraint
)

Parameters

element
Type: OnlineSystem.Xml XmlElement
The XML element that contains the definition of the object.
defaultTargetType
Type: OnlineSystem Type
The object type to use if not explicitly specified.
typeConstraint
Type: OnlineSystem Type
The type that the returned object must be or must inherit from.

Return Value

Type: OnlineObject
The object or null
Remarks

Parse an XML element and create an object instance based on the configuration data.

The type of the instance may be specified in the XML. If not specified then the defaultTargetType is used as the type. However the type is specified it must support the typeConstraint type.

See Also