Html Agility Pack Clone
public HtmlNode Clone()
Creates a duplicate of the node. Clone method is a member of HtmlAgilityPack.HtmlNode
Returns:
The duplicate of the node.
Example
The following example creates a duplicate of the node.
var htmlDoc = new HtmlDocument(); htmlDoc.LoadHtml(html); var htmlBody = htmlDoc.DocumentNode.SelectSingleNode("//body"); HtmlNode newHtmlBody = htmlBody.Clone();
Click here to run this example.