klyn.io.xml.dom.XMLSerializer.stringify
method
public static stringify(value as Object, rootName as String = "object", exclude as List<String> = null, prettyPrint as Boolean = true, indent as Int = 4) as String:
Description

Converts a value to XML text.

Parameters
  • value Source value.
  • rootName Root element name.
  • exclude Optional list of top-level members to skip.
  • prettyPrint Enables multi-line output.
  • indent Number of spaces per indentation level.
Returns

XML representation of the value.

Example
xml = XMLSerializer.stringify(user, "User", ["password"], true, 4)