メインメニューを開く

FileContentResultクラスとは、ASP.NET MVCアクション・メソッドの戻り値(ActionResultおよびその派生クラス)として、byte配列の内容をバイナリデータとしてそのまま送信するFileResultクラスを継承したクラスである。

目次

使用例編集

    using System.Web.Mvc;
    using System.Text;

    public class HomeController : Controller
    {
        public ActionResult DownloadCsv()
        {
            this.HttpContext.Response.AddHeader(
                "Content-Disposition", 
                "attachment; filename=hello.csv");

            byte[] data = Encoding.UTF8.GetBytes("hello, world");
            return new FileContentResult(data, "text/csv");
        }
    }

関連項目編集

参考文献編集

外部リンク編集