Blacker.Scraper.Downloader.Downloader C# (CSharp) Метод

Downloader() публичный Метод

public Downloader ( string>.IDictionary pages, string imageXPath ) : System
pages string>.IDictionary
imageXPath string
Результат System
        public Downloader(IDictionary<int, string> pages, string imageXPath)
            : this(pages, (x) => { return GetPageImageUrl(imageXPath, x); })
        {
            if (string.IsNullOrEmpty(imageXPath))
                throw new ArgumentException("Invalid XPath", "imageXPath");
        }

Same methods

Downloader::Downloader ( string>.Func pagesResolver, string>.Func imageFinder ) : System
Downloader::Downloader ( string>.Func pagesResolver, string imageXPath ) : System
Downloader::Downloader ( string>.IDictionary pages, string>.Func imageFinder ) : System