Html Agility Pack ChildNodes
public HtmlNodeCollection ChildNodes { get; }
Gets all the children of the node. ChildNodes is a member of HtmlAgilityPack.HtmlNode
Example
The following example displays all the children elements of the node.
var htmlDoc = new HtmlDocument(); htmlDoc.LoadHtml(html); var htmlBody = htmlDoc.DocumentNode.SelectSingleNode("//body"); HtmlNodeCollection childNodes = htmlBody.ChildNodes; foreach (var node in childNodes) { if (node.NodeType == HtmlNodeType.Element) { Console.WriteLine(node.OuterHtml); } }
Click here to run this example.