Blacker.MangaScraper.Library.LibraryManager.GetDownloadInfo C# (CSharp) Method

GetDownloadInfo() public method

public GetDownloadInfo ( string chapterId ) : DownloadedChapterInfo
chapterId string
return DownloadedChapterInfo
        public DownloadedChapterInfo GetDownloadInfo(string chapterId)
        {
            if (String.IsNullOrEmpty(chapterId))
                throw new ArgumentException("Chapter id must not be null or empty.", "chapterId");

            return _storage.GetChapterInfo(chapterId);
        }

Same methods

LibraryManager::GetDownloadInfo ( IChapterRecord chapterRecord ) : DownloadedChapterInfo
LibraryManager::GetDownloadInfo ( IChapterRecord chapterRecord, bool prefetch ) : DownloadedChapterInfo