XmlNode

XmlNode class is a simple Xml purser for using the data downloaded by Network.downloadAsXml.

getNodes(name)

Enumerating all the child nodes that hold the name of "name" in the node which XmlNode stores at present, this returns as XmlNode class array. When a node was not found, or when some error occurs, it returns null.

getSingleNode(name)

Returns the first of the child node which holds the name of "name" in the node which XmlNode stores at present in a XmlNode class. When a node was not found, or when some error occurs, it returns null.

getAttribute(name)

Gets the contents of the attribute with the name of "name" in the node which the class stores.

value

Gets the contents of the node which the class contains.