HtmlNodeCopyFrom Method (HtmlNode, Boolean) |
Creates a duplicate of the node.
Namespace:
WorkflowGen.My.HtmlAgilityPack
Assembly:
WorkflowGen.My (in WorkflowGen.My.dll) Version: 4.3.0.0 (4.3.0.0)
Syntax public void CopyFrom(
HtmlNode node,
bool deep
)
Public Sub CopyFrom (
node As HtmlNode,
deep As Boolean
)
Parameters
- node
- Type: WorkflowGen.My.HtmlAgilityPackHtmlNode
The node to duplicate. May not be null. - deep
- Type: SystemBoolean
true to recursively clone the subtree under the specified node, false to clone only the node itself.
See Also