XmlAttribute.AppendChild(XmlNode) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Adds the specified node to the end of the list of child nodes, of this node.
public:
override System::Xml::XmlNode ^ AppendChild(System::Xml::XmlNode ^ newChild);
public override System.Xml.XmlNode AppendChild (System.Xml.XmlNode newChild);
public override System.Xml.XmlNode? AppendChild (System.Xml.XmlNode newChild);
override this.AppendChild : System.Xml.XmlNode -> System.Xml.XmlNode
Public Overrides Function AppendChild (newChild As XmlNode) As XmlNode
Parameters
Returns
The XmlNode added.
Exceptions
This node is of a type that does not allow child nodes of the type of the newChild
node.
The newChild
is an ancestor of this node.
The newChild
was created from a different document than the one that created this node.
This node is read-only.
Examples
For an example of the AppendChild method, see the AppendChild method.
Remarks
If the newChild
is already in the tree, it is first removed.
If the node being inserted was created from another document, you can use XmlDocument.ImportNode to import the node to the current document. The imported node can then be inserted into the current document.
Applies to
.NET