Exemplo n.º 1
0
 public static IEnumerable <HtmlNode> Find(this HtmlNode node, string expression)
 {
     return(CssSelector.Search(expression, node.AsContainer()).Select(element => (HtmlNode)element.RawObject));
 }