コード例 #1
0
ファイル: FileRepository.cs プロジェクト: yadavgn/FunnelWeb
        public override ActionResult Render(string path)
        {
            if (IsFile(path))
            {
                return(new FilePathResult(MapPath(path), mimeHelper.GetMimeType(path)));
            }

            return(new HttpNotFoundResult());
        }