System::Xml::XmlCDataSection::CloneNode method

XmlCDataSection::CloneNode method

Creates a duplicate of this node.

SharedPtr<XmlNode> System::Xml::XmlCDataSection::CloneNode(bool deep) override
ParameterTypeDescription
deepbooltrue to recursively clone the subtree under the specified node; false to clone only the node itself. Because CDATA nodes do not have children, regardless of the parameter setting, the cloned node will always include the data content.

ReturnValue

The cloned node.

See Also