XmlNode
XmlNode represents a single node in the XML representation
of a Test or TestResult. It replaces System.Xml.XmlNode and
provides a minimal set of methods for operating on the XML
in a platform-independent manner.
Gets the dictionary of attributes
Gets a list of child nodes
Gets the text content of the node escaped as needed.
This is for use in writing out the XML representation.
Gets the first child of this node, or null
Gets the name of the node
Gets the outer XML.
Gets the text content of the node
Constructs a new instance of XmlNode
Creates a new top level element node.
Adds an attribute with a specified name and value to the XmlNode.
Adds a new element as a child of the current node and returns it.
Finds a single descendant of this node matching an xpath
specification. The format of the specification is
limited to what is needed by NUnit and its tests.
Finds all descendants of this node matching an xpath
specification. The format of the specification is
limited to what is needed by NUnit and its tests.
Writes the XML representation of the node to an XmlWriter