Controller.File Method (Stream, String, String)
Creates a FileStreamResult object using the Stream object, the content type, and the target file name.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
protected internal virtual FileStreamResult File( Stream fileStream, string contentType, string fileDownloadName )
Parameters
- fileStream
- Type: System.IO.Stream
The stream to send to the response.
- contentType
- Type: System.String
The content type (MIME type)
- fileDownloadName
- Type: System.String
The file name to use in the file-download dialog box that is displayed in the browser.
Show: