Controller.File Method

Definition

Overloads

File(Byte[], String)

Creates a FileContentResult object by using the file contents and file type.

File(Stream, String)

Creates a FileStreamResult object by using the Stream object and content type.

File(String, String)

Creates a FilePathResult object by using the file name and the content type.

File(Byte[], String, String)

Creates a FileContentResult object by using the file contents, content type, and the destination file name.

File(Stream, String, String)

Creates a FileStreamResult object using the Stream object, the content type, and the target file name.

File(String, String, String)

Creates a FilePathResult object by using the file name, the content type, and the file download name.

File(Byte[], String)

Creates a FileContentResult object by using the file contents and file type.

protected internal System.Web.Mvc.FileContentResult File(byte[] fileContents, string contentType);

Parameters

fileContents
Byte[]

The binary content to send to the response.

contentType
String

The content type (MIME type).

Returns

The file-content result object.

Applies to

ASP.NET MVC 5.2
Product Versions
ASP.NET MVC 5.2

File(Stream, String)

Creates a FileStreamResult object by using the Stream object and content type.

protected internal System.Web.Mvc.FileStreamResult File(System.IO.Stream fileStream, string contentType);

Parameters

fileStream
Stream

The stream to send to the response.

contentType
String

The content type (MIME type).

Returns

The file-content result object.

Applies to

ASP.NET MVC 5.2
Product Versions
ASP.NET MVC 5.2

File(String, String)

Creates a FilePathResult object by using the file name and the content type.

protected internal System.Web.Mvc.FilePathResult File(string fileName, string contentType);

Parameters

fileName
String

The path of the file to send to the response.

contentType
String

The content type (MIME type).

Returns

The file-stream result object.

Applies to

ASP.NET MVC 5.2
Product Versions
ASP.NET MVC 5.2

File(Byte[], String, String)

Creates a FileContentResult object by using the file contents, content type, and the destination file name.

protected internal virtual System.Web.Mvc.FileContentResult File(byte[] fileContents, string contentType, string fileDownloadName);

Parameters

fileContents
Byte[]

The binary content to send to the response.

contentType
String

The content type (MIME type).

fileDownloadName
String

The file name to use in the file-download dialog box that is displayed in the browser.

Returns

The file-content result object.

Applies to

ASP.NET MVC 5.2
Product Versions
ASP.NET MVC 5.2

File(Stream, String, String)

Creates a FileStreamResult object using the Stream object, the content type, and the target file name.

protected internal virtual System.Web.Mvc.FileStreamResult File(System.IO.Stream fileStream, string contentType, string fileDownloadName);

Parameters

fileStream
Stream

The stream to send to the response.

contentType
String

The content type (MIME type)

fileDownloadName
String

The file name to use in the file-download dialog box that is displayed in the browser.

Returns

The file-stream result object.

Applies to

ASP.NET MVC 5.2
Product Versions
ASP.NET MVC 5.2

File(String, String, String)

Creates a FilePathResult object by using the file name, the content type, and the file download name.

protected internal virtual System.Web.Mvc.FilePathResult File(string fileName, string contentType, string fileDownloadName);

Parameters

fileName
String

The path of the file to send to the response.

contentType
String

The content type (MIME type).

fileDownloadName
String

The file name to use in the file-download dialog box that is displayed in the browser.

Returns

The file-stream result object.

Applies to

ASP.NET MVC 5.2
Product Versions
ASP.NET MVC 5.2