Html Agility Pack ParentNode
public HtmlNode ParentNode { get; }
Gets the parent of this node (for nodes that can have parents). ParentNode is a member of HtmlAgilityPack.HtmlNode
Example
var htmlDoc = new HtmlDocument(); htmlDoc.LoadHtml(html); var node = htmlDoc.DocumentNode.SelectSingleNode("//body/h1"); HtmlNode parentNode = node.ParentNode; Console.WriteLine(parentNode.Name);
Click here to run this example.