Blacker.Scraper.DownloadFormats.BaseDownloadFormat.GetNameForSave C# (CSharp) Method

GetNameForSave() protected method

protected GetNameForSave ( IChapterRecord chapter ) : string
chapter IChapterRecord
return string
        protected string GetNameForSave(IChapterRecord chapter)
        {
            string fileName = String.Format("{0} - {1}", chapter.MangaName, chapter.ChapterName).Replace(" ", "_");

            return InvalidPathCharsRegex.Replace(fileName, "");
        }
BaseDownloadFormat