internal static async Task <TableOfContentNcx> Read(ZipFile zipFile, string tocPath)
        {
            var tocNcx = new TableOfContentNcx(zipFile);
            await tocNcx.Initialize(tocPath);

            return(tocNcx);
        }
Esempio n. 2
0
 public async Task <TableOfContentNcx> LoadTableOfContent()
 {
     return(await TableOfContentNcx.Read(this.zipFile, this.CombinePath(this.TocHref)));
 }