/*IPriotizableIconCrawler.*/
        public ICrawlResult CrawlSingle( ICrawlInformation crawlInfo )
        {
            this._crawlInfo = crawlInfo;
            var image = this.Crawl();

            return new CrawlResult { Image = image, Input = crawlInfo };
        }
 public ICrawlResult /*IBannerCrawler.*/CrawlSingle( ICrawlInformation crawlInfo )
 {
     throw new NotImplementedException();
 }
 public ICrawlResult CrawlSingle( ICrawlInformation input )
 {
     this._input = input;
     var icon = this.Crawl();
     return new CrawlResult { Icon = icon, Input = this._input };
 }