Esempio n. 1
0
 private static Element CompileAndCssSelect(this IEnumerable <Element> nodes, string selector)
 {
     return(CompileForElements(selector)(nodes).FirstOrDefault());
 }
Esempio n. 2
0
 private static IEnumerable <Element> CompileAndSelectAll(this IEnumerable <Element> nodes, string selector)
 {
     return(CompileForElements(selector)(nodes));
 }