Oracle® Fusion Middleware .NET API Reference for Oracle Coherence
12c (12.2.1.4.0)
E90869-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: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
public static void TransformInitParams(
	IXmlElement xmlParent,
	IXmlElement xmlParams
)

Parameters

xmlParent
Type: Tangosol.Run.Xml..::..IXmlElement
The XML element to insert the transformed elements into.
xmlParams
Type: Tangosol.Run.Xml..::..IXmlElement
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