Click or drag to resize

XmlHelperTransformInitParams Method

Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
14c (14.1.1.0)
F23534-02
Transform the specified "init-params" element of the following structure:
            <!ELEMENT init-params (init-param*)>
            <!ELEMENT init-param ((param-name | param-type), param-value,
            description?)>
            
into an XML element composed of the corrsponding names. For example, the "init-params" element of the following structure:
            <init-param>
                <param-name>NameOne</param-name>
                <param-value>ValueOne</param-value>
            </init-param>
            <init-param>
                <param-name>NameTwo</param-name>
                <param-value>ValueTwo</param-value>
            </init-param>
            
will transform into
            <NameOne>ValueOne</NameOne>
            <NameTwo>ValueTwo</NameTwo>
            

Namespace:  Tangosol.Run.Xml
Assembly:  Coherence (in Coherence.dll) Version: 14.1.1.14 (14.1.1.14)
Syntax
C#
public static void TransformInitParams(
	IXmlElement xmlParent,
	IXmlElement xmlParams
)

Parameters

xmlParent
Type: Tangosol.Run.XmlIXmlElement
The XML element to insert the transformed elements into.
xmlParams
Type: Tangosol.Run.XmlIXmlElement
The "init-params" IXmlElement to parse.
Remarks
For the purpose of this method only the parameters that have the "param-name" element specified are processed.
See Also