Пример #1
0
 public static IEnumerable<List<CrawlItem>> SearchPropertiesSmart(this string htmlDoc,
     ICollection<CrawlItem> existItems = null)
 {
     var html = new HtmlDocument();
     html.LoadHtml(htmlDoc);
     return html.SearchPropertiesSmart(existItems);
 }