Zephyr.Web.Mvc.ZephyrViewEngineVirtualPathProvider.FileExists C# (CSharp) Method

FileExists() public method

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.
return bool
        public override bool FileExists(string virtualPath)
        {
            if (PathExists(virtualPath))
            {
                return true;
            }
            return base.FileExists(virtualPath);
        }