BetterCms.Module.Pages.Services.DefaultUrlService.PathExistsInUnsavedList C# (CSharp) 메소드

PathExistsInUnsavedList() 개인적인 메소드

Checks if path exists in unsaved list.
private PathExistsInUnsavedList ( string url, List unsavedUrls ) : bool
url string The URL.
unsavedUrls List The unsaved urls.
리턴 bool
        private bool PathExistsInUnsavedList(string url, List<string> unsavedUrls)
        {
            return unsavedUrls.Any(u => u == url);
        }