System::Xml::XmlAttribute::PrependChild method

XmlAttribute::PrependChild method

Adds the specified node to the beginning of the list of child nodes for this node.

SharedPtr<XmlNode> System::Xml::XmlAttribute::PrependChild(SharedPtr<XmlNode> newChild) override
ParameterTypeDescription
newChildSharedPtr<XmlNode>The XmlNode to add. If it is an XmlDocumentFragment, the entire contents of the document fragment are moved into the child list of this node.

ReturnValue

The XmlNode added.

See Also