Controller::File Method (Stream, String)
Creates a FileStreamResult object by using the Stream object and content type.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
protected public: FileStreamResult^ File( Stream^ fileStream, String^ contentType )
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.
Show: