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

GetDownloads() public method

public GetDownloads ( string search ) : IEnumerable
search string
return IEnumerable
        public IEnumerable<DownloadedChapterInfo> GetDownloads(string search)
        {
            if (String.IsNullOrEmpty(search))
                throw new ArgumentException("Search string must not be null or emtpy.");

            return _storage.GetChaptersInfo(search);
        }

Same methods

LibraryManager::GetDownloads ( ) : IEnumerable
LibraryManager::GetDownloads ( System.DateTime newerThen ) : IEnumerable