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

Namespace: Tangosol.Run.Xml
Assembly: Coherence (in Coherence.dll) Version: 12.2.1.4014 (12.2.1.4014)

Syntax

C#
public static Object[] ParseInitParams(
	IXmlElement xmlParams
)

Parameters

xmlParams
Type: Tangosol.Run.Xml..::..IXmlElement
The "init-params" IXmlElement to parse.

Return Value

An array of parameters.

Remarks

For the purpose of this method only the parameters that have the "param-type" element specified are processed. The following types are supported:
  • string (a.k.a. System.String)
  • bool (a.k.a. System.Boolean)
  • int (a.k.a. System.Int32)
  • long (a.k.a. System.Int64)
  • float (a.k.a. System.Single)
  • double (a.k.a. System.Double)
  • decimal (a.k.a. System.Decimal)
  • file (a.k.a. System.IO.File)
  • date (a.k.a. System.DateTime)
  • time (a.k.a. System.DateTime
  • xml (a.k.a. Tangosol.Run.Xml.IXmlElement)
For any other [explicitly specified] types the corresponding "init-param" IXmlElement itself is placed into the returned array.

See Also