Exemple #1
0
 /// <summary>
 ///     Add the totals from a <see cref="DiscoveredDocuments" /> message to these stats
 /// </summary>
 public CrawlJobStats WithDiscovered(DiscoveredDocuments doc)
 {
     return(Copy(HtmlDocumentsDiscovered + doc.HtmlDocs, ImagesDiscovered + doc.Images));
 }
 /// <summary>
 /// Add the totals from a <see cref="DiscoveredDocuments"/> message to these stats
 /// </summary>
 public CrawlJobStats WithDiscovered(DiscoveredDocuments doc)
 {
     return Copy(htmlDiscovered: HtmlDocumentsDiscovered + doc.HtmlDocs, imgDiscovered: ImagesDiscovered + doc.Images);
 }