Ejemplo n.º 1
0
        public static List <HtmlLinkControl> Extract(string html, Uri root)
        {
            HtmlLinkExtractor ex = new HtmlLinkExtractor(html, root);

            while (!ex.EOF)
            {
                ex.Read();
            }
            return(ex.Links);
        }
Ejemplo n.º 2
0
 public static List<HtmlLinkControl> Extract(string html, Uri root)
 {
     HtmlLinkExtractor ex = new HtmlLinkExtractor(html, root);
     while (!ex.EOF) ex.Read();
     return ex.Links;
 }