CloneNode()

XmlNode::CloneNode(bool) method

Creates a duplicate of the node, when overridden in a derived class.

virtual SharedPtr<XmlNode> System::Xml::XmlNode::CloneNode(bool deep)=0

Arguments

ParameterTypeDescription
deepbooltrue to recursively clone the subtree under the specified node; false to clone only the node itself.

Return Value

The cloned node.

See Also