Example #1
0
 public List<HtmlNode> ExtractBlock(XPathQuery xPathQuery)
 {
     return ExtractBlock(_htmlDoc.DocumentNode, xPathQuery);
 }
Example #2
0
 public static List<HtmlNode> ExtractBlock(HtmlNode htmlNode, XPathQuery xPathQuery)
 {
     return NodesToList(htmlNode.SelectNodes(xPathQuery.GetXPathQuery()));
 }