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

GetPages() приватный Метод

private GetPages ( IChapterRecord chapter ) : string>.IDictionary
chapter IChapterRecord
Результат string>.IDictionary
        private IDictionary<int, string> GetPages(IChapterRecord chapter)
        {
            IDictionary<int, string> pages = new Dictionary<int, string>();

            var document = WebHelper.GetHtmlDocument(chapter.Url);

            GetPagesRecursive(document, pages);

            return pages;
        }