Oracle® Coherence .NET API Reference Release 3.7.1
E22844-03

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: 3.7.1.23 (3.7.1.23)

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