Click or drag to resize
XmlHelper Class
Contains common XML manipulation routines.
Inheritance Hierarchy
SystemObject
  com.softwarekey.Client.UtilsXmlHelper

Namespace: com.softwarekey.Client.Utils
Assembly: PLUSManaged (in PLUSManaged.dll) Version: 5.23.4.0
Syntax
public static class XmlHelper

The XmlHelper type exposes the following members.

Methods
  NameDescription
Public methodStatic memberAddNewElement(XmlDocument, String, DateTime)
Adds a new XML element to an XML document.
Public methodStatic memberAddNewElement(XmlDocument, String, Decimal)
Adds a new XML element to an XML document.
Public methodStatic memberAddNewElement(XmlDocument, String, Double)
Adds a new XML element to an XML document.
Public methodStatic memberAddNewElement(XmlDocument, String, Int32)
Adds a new XML element to an XML document.
Public methodStatic memberAddNewElement(XmlDocument, String, String)
Adds a new XML element to an XML document.
Public methodStatic memberAddNewElement(XmlDocument, XmlElement, String, DateTime)
Adds a new XML element to an XML document's referenced node
Public methodStatic memberAddNewElement(XmlDocument, XmlElement, String, Decimal)
Adds a new XML element to an XML document's referenced node.
Public methodStatic memberAddNewElement(XmlDocument, XmlElement, String, Double)
Adds a new XML element to an XML document's referenced node.
Public methodStatic memberAddNewElement(XmlDocument, XmlElement, String, Int32)
Adds a new XML element to an XML document's referenced node.
Public methodStatic memberAddNewElement(XmlDocument, XmlElement, String, String)
Adds a new XML element to an XML document's referenced node.
Public methodStatic memberCreateDocument
Creates a new, empty XML document.
Public methodStatic memberGetIso8601DateTimeNodeValue
Gets an XML node's ISO-8601 value and stores it to a DateTime variable (converted to local time automatically).
Public methodStatic memberGetNodeValue(XmlNode, String, Boolean)
Gets an XML node's value and stores it to a Boolean variable.
Public methodStatic memberGetNodeValue(XmlNode, String, DateTime)
Gets an XML node's value and stores it to an DateTime variable.
Public methodStatic memberGetNodeValue(XmlNode, String, Decimal)
Gets an XML node's value and stores it to a decimal variable.
Public methodStatic memberGetNodeValue(XmlNode, String, Int32)
Gets an XML node's value and stores it to an Int32 variable.
Public methodStatic memberGetNodeValue(XmlNode, String, String)
Gets an XML node's value and stores it to a string variable.
Public methodStatic memberGetNodeValue(XmlNode, String, String, Boolean)
Gets an XML node's value and stores it to a string variable.
Public methodStatic memberImportDocument(XmlDocument, XmlDocument)
Imports an xml document as a child element of the document element
Public methodStatic memberImportDocument(XmlDocument, XmlElement, XmlDocument)
Imports an xml document as a child element of the specified element
Top
See Also