Controller.File Method (String, String, String)
.NET Framework 3.5
Creates a FilePathResult object using the file name, content type and file download name.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
protected internal virtual FilePathResult File( string fileName, string contentType, string fileDownloadName )
Parameters
- fileName
- Type: System.String
The path to the file to send to the response.
- contentType
- Type: System.String
The content type (MIME type).
- fileDownloadName
- Type: System.String
The file name to display in the file-download dialog box that is displayed in the browser.
The fileDownloadName parameter is used to generate the content-disposition header. The content-disposition header must use US ASCII encoding. Therefore, the fileDownloadName parameter must use US ASCII encoding. The result object that is prepared by this method is written to the response by the MVC framework when the object is executed. The MediaTypeNames class can be used to get the MIME type for a particular file extension.