Controller::File Method
Creates a FileContentResult object.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
| Name | Description | |
|---|---|---|
![]() | File(array<Byte>^, String^) | Creates a FileContentResult object by using the file contents and file type. |
![]() | File(array<Byte>^, String^, String^) | Creates a FileContentResult object by using the file contents, content type, and the destination file name. |
![]() | File(Stream^, String^) | Creates a FileStreamResult object by using the Stream object and content type. |
![]() | File(Stream^, String^, String^) | Creates a FileStreamResult object using the Stream object, the content type, and the target file name. |
![]() | File(String^, String^) | Creates a FilePathResult object by using the file name and the content type. |
![]() | File(String^, String^, String^) | Creates a FilePathResult object by using the file name, the content type, and the file download name. |
Controller::File Method (array<Byte>^, String^)
Creates a FileContentResult object by using the file contents and file type.
public protected: FileContentResult^ File( array<unsigned char>^ fileContents, String^ contentType )
Parameters
- fileContents
-
Type:
array<System::Byte>^
The binary content to send to the response.
- contentType
-
Type:
System::String^
The content type (MIME type).
The result object that is prepared by this method is written to the response by the ASP.NET MVC framework when the object is executed. The MediaTypeNames class can be used to get the MIME type for a specific file name extension.
Controller::File Method (array<Byte>^, String^, String^)
Creates a FileContentResult object by using the file contents, content type, and the destination file name.
public protected: virtual FileContentResult^ File( array<unsigned char>^ fileContents, String^ contentType, String^ fileDownloadName )
Parameters
- fileContents
-
Type:
array<System::Byte>^
The binary content 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.
The fileDownloadName parameter is used to generate the content-disposition header. The result object that is prepared by this method is written to the response by the ASP.NET MVC framework when the object is executed. The MediaTypeNames class can be used to get the MIME type for a specific file name extension.
Controller::File Method (Stream^, String^)
Creates a FileStreamResult object by using the Stream object and content type.
Parameters
- fileStream
-
Type:
System.IO::Stream^
The stream to send to the response.
- contentType
-
Type:
System::String^
The content type (MIME type).
The result object that is prepared by this method is written to the response by the ASP.NET MVC framework when the object is executed. The MediaTypeNames class can be used to get the MIME type for a specific file name extension.
Controller::File Method (Stream^, String^, String^)
Creates a FileStreamResult object using the Stream object, the content type, and the target file name.
public protected: 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.
Controller::File Method (String^, String^)
Creates a FilePathResult object by using the file name and the content type.
Parameters
- fileName
-
Type:
System::String^
The path of the file to send to the response.
- contentType
-
Type:
System::String^
The content type (MIME type).
The result object that is prepared by this method is written to the response by the ASP.NET MVC framework when the object is executed.
Controller::File Method (String^, String^, String^)
Creates a FilePathResult object by using the file name, the content type, and the file download name.
public protected: virtual FilePathResult^ File( String^ fileName, String^ contentType, String^ fileDownloadName )
Parameters
- fileName
-
Type:
System::String^
The path of the file 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.
The fileDownloadName parameter is used to generate the content-disposition header. The result object that is prepared by this method is written to the response by the ASP.NET MVC framework when the object is executed. The MediaTypeNames class can be used to get the MIME type for a specific file name extension.
