Share via


XPathNavigator.AppendChild Method

Microsoft Silverlight will reach end of support after October 2021. Learn more.

Include Protected Members
Include Inherited Members

Include Silverlight Members
Include Silverlight for Windows Phone Members
Include XNA Framework Members

Creates a new child node at the end of the list of child nodes of the current node.

This member is overloaded. For complete information about this member, including syntax, usage, and examples, click a name in the overload list.

Overload List

  Name Description
Public method AppendChild() Returns an XmlWriter object used to create one or more new child nodes at the end of the list of child nodes of the current node.
Public method AppendChild(String) Creates a new child node at the end of the list of child nodes of the current node using the XML data string specified.
Public method AppendChild(XmlReader) Creates a new child node at the end of the list of child nodes of the current node using the XML contents of the XmlReader object specified.
Public method AppendChild(XPathNavigator) Creates a new child node at the end of the list of child nodes of the current node using the nodes in the XPathNavigator specified.

Top