Beispiel #1
0
        public string GetChapterContent(string chapterUrl)
        {
            var html = HttpHelper.DownloadSource(chapterUrl, Analyzer.Encode);

            return(Analyzer.GetChapterContent(html));
        }
Beispiel #2
0
        public Dictionary <string, string> GetChapterUrls(string chapterListUrl)
        {
            var html = HttpHelper.DownloadSource(chapterListUrl, Analyzer.Encode);

            return(Analyzer.GetChaptersDic(html));
        }