Creates an object used for FileNet configuration.


Namespace: FileNet.Api.Util
Assembly: FileNet.Api (in filenet.api.dll)

Syntax

Visual Basic (Declaration)
Public Function Create( _ 
   ByVal parent As Object,  _ 
   ByVal context As Object,  _ 
   ByVal node As XmlNode _ 
) As Object _
    Implements IConfigurationSectionHandler.Create
C#
public object Create(
   object parent,
   object context,
   XmlNode node
)
C++
public:
 Object Create(
   Object parent,
   Object context,
   XmlNode node
) sealed 
J#
public object Create(
   object parent,
   object context,
   XmlNode node
)
JScript
public  function Create(
   parent : Object,
   context : Object,
   node : XmlNode
) : Object

Parameters

parent
The parent object for the created object.
context
The context to use for the created object.
node
The XML node containing configuration settings for the object.

Implements

IConfigurationSectionHandler.Create

See Also