Zephyr.Web.Mvc.ZephyrViewEngineVirtualPathProvider.FileExists C# (CSharp) 메소드

FileExists() 공개 메소드

Gets a value that indicates whether a file exists in the virtual file system.
public FileExists ( string virtualPath ) : bool
virtualPath string The path to the virtual file.
리턴 bool
        public override bool FileExists(string virtualPath)
        {
            if (PathExists(virtualPath))
            {
                return true;
            }
            return base.FileExists(virtualPath);
        }