Blacker.Scraper.DownloadFormats.BaseDownloadFormat.GetNameForSave C# (CSharp) 메소드

GetNameForSave() 보호된 메소드

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

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