Mono Class Library: Overview

System.Xml.XmlNode: Method Members

The methods of System.Xml.XmlNode are listed below. For a list of all members, see the XmlNode Members list.

See Also: Inherited members from System.Object

Public Methods

AppendChild(XmlNode) : XmlNode
Add a given node as a child of this one.
Clone() : XmlNode
Creates a deep copy of this node.
abstract
CloneNode(bool) : XmlNode
Creates a clone of the node.
CreateNavigator() : System.Xml.XPath.XPathNavigator
Creates an System.Xml.XPath.XPathNavigator located at the node.
GetEnumerator() : IEnumerator
Gets an enumerator over the children of the node.
GetNamespaceOfPrefix(string) : string
Gets the URI associated with the given namespace prefix.
GetPrefixOfNamespace(string) : string
Gets the prefix associated with the given namespace.
InsertAfter(XmlNode, XmlNode) : XmlNode
Inserts a node after one of this node's children.
InsertBefore(XmlNode, XmlNode) : XmlNode
Inserts a node before one of this node's children.
Normalize()
Documentation for this section has not yet been entered.
PrependChild(XmlNode) : XmlNode
Inserts a node as the first child of this node.
RemoveAll()
Removes all of the children of the node.
RemoveChild(XmlNode) : XmlNode
Remove a child node.
ReplaceChild(XmlNode, XmlNode) : XmlNode
Replace a child node.
SelectNodes(string) : XmlNodeList
Run an XPath expression against this node.
SelectNodes(string, XmlNamespaceManager) : XmlNodeList
Run an XPath expression against this node within a given context.
SelectSingleNode(string) : XmlNode
Run an XPath expression against this node, returning the first matching node.
SelectSingleNode(string, XmlNamespaceManager) : XmlNode
Run an XPath expression against this node in a given context, returning the first matching node.
Supports(string, string) : bool
Tests whether the node supports certain DOM features.
abstract
WriteContentTo(XmlWriter)
Writes the child nodes of this node to an System.Xml.XmlWriter.
abstract
WriteTo(XmlWriter)
Writes the node and its children to an System.Xml.XmlWriter.