Creates a configuration section handler.
Namespace: BrightstarDB.ConfigAssembly: BrightstarDB (in BrightstarDB.dll) Version: 1.9.0.0 (1.9.0.0)
Syntax
C# |
---|
public Object Create(
Object parent,
Object configContext,
XmlNode section
) |
Visual Basic |
---|
Public Function Create (
parent As Object,
configContext As Object,
section As XmlNode
) As Object |
Visual C++ |
---|
public:
virtual Object^ Create(
Object^ parent,
Object^ configContext,
XmlNode^ section
) sealed |
F# |
---|
abstract Create :
parent : Object *
configContext : Object *
section : XmlNode -> Object
override Create :
parent : Object *
configContext : Object *
section : XmlNode -> Object |
Parameters
- parent
- Type: System..::..Object
Parent object.
- configContext
- Type: System..::..Object
Configuration context object.
- section
- Type: System.Xml..::..XmlNode
Section XML node.
Return Value
Type:
Object
The created section handler object.
Implements
IConfigurationSectionHandler..::..Create(Object, Object, XmlNode)
See Also