show/hide this revision's text 2 bad example changed

To expland on Dyland's response slightly:

Three classes implement the FileResult class:

System.Web.Mvc.FileResult
      System.Web.Mvc.FileContentResult
      System.Web.Mvc.FilePathResult
      System.Web.Mvc.FileStreamResult

They're all fairly self explanatory:

  • For filepath file path downloads where the file exists on disk, use FilePathResult - this is the easiest way and avoids you having to use Streams.
  • For byte[] arrays (akin to Response.BinaryWrite), use FileContentResult.
  • For byte[] arrays where you want the file to download (content-disposition: attachment), use FileContentResult as shown in a similar way to below, but with a MemoryStream and using GetBuffer().
  • And
  • For Streams it should be obvious which one to use FileStreamResult. It's called a FileStreamResult but it takes a Stream so I'd guess it works with a MemoryStream.

Below is an example of using the content-disposition technique to send an XML backup file of a list of domain objects back to the browser(not tested):

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult GetFile()
{
    List<User> list = User.All();

 XmlSerializer serializer = new XmlSerializer(typeof(List<User>));
 MemoryStream using (FileStream stream = new MemoryStream();
 serializer.Serialize(stream, list);
 stream.Position = 0;
 stream.Close();

 FileContentResult FileStream(AppDomain.CurrentDomain.BaseDirectory + "/myimage.png"))
    {
    	FileStreamResult result = new FileContentResult(stream.GetBuffer()FileStreamResult(stream, "text/xml");
 image/png");
    	result.FileDownloadName = "export.xml";

 image.png";
    	return result;
    }

FileContentResult is used for byte[] downloads including content-disposition downloads, FilePathResult for plain file paths ones.}

show/hide this revision's text 1

To expland on Dyland's response slightly:

Three classes implement the FileResult class:

System.Web.Mvc.FileResult
      System.Web.Mvc.FileContentResult
      System.Web.Mvc.FilePathResult
      System.Web.Mvc.FileStreamResult

They're all fairly self explanatory:

  • For filepath downloads where the file exists on disk, use FilePathResult.
  • For byte[] arrays (akin to Response.BinaryWrite), use FileContentResult.
  • For byte[] arrays where you want the file to download (content-disposition: attachment), use FileContentResult as shown below.
  • And Streams it should be obvious which one to use.

Below is an example of using the content-disposition technique to send an XML backup file of a list of domain objects back to the browser:

[AcceptVerbs(HttpVerbs.Post)]
public ActionResult GetFile()
{
 List<User> list = User.All();

 XmlSerializer serializer = new XmlSerializer(typeof(List<User>));
 MemoryStream stream = new MemoryStream();
 serializer.Serialize(stream, list);
 stream.Position = 0;
 stream.Close();

 FileContentResult result = new FileContentResult(stream.GetBuffer(), "text/xml");
 result.FileDownloadName = "export.xml";

 return result;
}

FileContentResult is used for byte[] downloads including content-disposition downloads, FilePathResult for plain file paths ones.