Exemplo n.º 1
0
        protected override async Task DoChapterLoading()
        {
            var deserializer = new BookmarkInfoDeserializer(this.Ncode);
            var chapters     = await deserializer.GetChapterCountAsync();

            for (int i = 0; i < chapters; i++)
            {
                var c = new NarouChapter(this.Ncode, i + 1);
                this.Add(c);
            }
        }
Exemplo n.º 2
0
        protected override async Task DoSummaryLoading()
        {
            var deserializer = new BookmarkInfoDeserializer(this.Ncode);

            (this.Title, this.Writer, this.BookmarkedDate) = await deserializer.GetSummaryAsync();
        }