System.Xml.XPath.XPathNavigator.AppendChild Method

Creates a new child node at the end of the list of child nodes of the current node using the XML data string specified.

Syntax

public virtual void AppendChild (string newChild)

Parameters

newChild
The XML data string for the new child node.

Remarks

Appending a child node adds the new node to the end of the list of child nodes for the current node. For example, when three child nodes exist for an element, the appended node becomes the fourth child node. If no child nodes exist, then a new child node is created.

To create a new element node, include all XML syntax in the XML string parameter. The string for a new book node is AppendChild("<book/>"). The string for appending the text "book" to the current node's text node is AppendChild("book"). If the XML string contains multiple nodes, all nodes are added.

The following are important notes to consider when using the XPathNavigator.AppendChild(string) method.

Requirements

Namespace: System.Xml.XPath
Assembly: System.Xml (in System.Xml.dll)
Assembly Versions: 2.0.0.0, 4.0.0.0
Since: .NET 2.0