ControllerBase.File Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
File(String, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean) |
Devuelve el archivo especificado por |
File(Stream, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean) |
Devuelve un archivo en el especificado |
File(Byte[], String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean) |
Devuelve un archivo con el especificado |
File(String, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue) |
Devuelve el archivo especificado por |
File(String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean) |
Devuelve el archivo especificado por |
File(Stream, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue) |
Devuelve un archivo en el especificado |
File(Stream, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean) |
Devuelve un archivo en el especificado |
File(Byte[], String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue) |
Devuelve un archivo con el especificado |
File(Byte[], String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean) |
Devuelve un archivo con el especificado |
File(String, String, String, Boolean) |
Devuelve el archivo especificado por |
File(String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue) |
Devuelve el archivo especificado por |
File(Stream, String, String, Boolean) |
Devuelve un archivo en el especificado |
File(Stream, String) |
Devuelve un archivo en el especificado |
File(Byte[], String, String, Boolean) |
Devuelve un archivo con el especificado |
File(Byte[], String) |
Devuelve un archivo con el especificado |
File(Stream, String, Nullable<DateTimeOffset>, EntityTagHeaderValue) |
Devuelve un archivo en el especificado |
File(Byte[], String, Boolean) |
Devuelve un archivo con el especificado |
File(Byte[], String, String) |
Devuelve un archivo con el especificado |
File(String, String) |
Devuelve el archivo especificado por |
File(Stream, String, String) |
Devuelve un archivo en el especificado |
File(String, String, Boolean) |
Devuelve el archivo especificado por |
File(String, String, String) |
Devuelve el archivo especificado por |
File(Byte[], String, Nullable<DateTimeOffset>, EntityTagHeaderValue) |
Devuelve un archivo con el especificado |
File(Stream, String, Boolean) |
Devuelve un archivo en el especificado |
File(String, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve el archivo especificado por virtualPath
(Status200OK), el especificado contentType
como Content-Type y el especificado fileDownloadName
como el nombre de archivo sugerido.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::VirtualFileResult ^ File(System::String ^ virtualPath, System::String ^ contentType, System::String ^ fileDownloadName, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType, string fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType, string? fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : string * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.VirtualFileResult
override this.File : string * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.VirtualFileResult
Public Overridable Function File (virtualPath As String, contentType As String, fileDownloadName As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue, enableRangeProcessing As Boolean) As VirtualFileResult
Parámetros
- virtualPath
- String
Ruta de acceso virtual del archivo que se va a devolver.
- contentType
- String
El tipo de contenido del archivo.
- fileDownloadName
- String
Nombre de archivo sugerido.
- lastModified
- Nullable<DateTimeOffset>
DateTimeOffset de cuándo se modificó por última vez el archivo.
- entityTag
- EntityTagHeaderValue
Asociado EntityTagHeaderValue al archivo .
- enableRangeProcessing
- Boolean
Establézcalo en true
para habilitar el procesamiento de solicitudes de intervalo.
Devoluciones
creado VirtualFileResult para la respuesta.
- Atributos
Se aplica a
File(Stream, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo en el especificado fileStream
(Status200OK), el especificado contentType
como Content-Type y el especificado fileDownloadName
como nombre de archivo sugerido.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileStreamResult ^ File(System::IO::Stream ^ fileStream, System::String ^ contentType, System::String ^ fileDownloadName, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType, string fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType, string? fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : System.IO.Stream * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.FileStreamResult
override this.File : System.IO.Stream * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.FileStreamResult
Public Overridable Function File (fileStream As Stream, contentType As String, fileDownloadName As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue, enableRangeProcessing As Boolean) As FileStreamResult
Parámetros
- contentType
- String
El tipo de contenido del archivo.
- fileDownloadName
- String
Nombre de archivo sugerido.
- lastModified
- Nullable<DateTimeOffset>
DateTimeOffset de cuándo se modificó por última vez el archivo.
- entityTag
- EntityTagHeaderValue
Asociado EntityTagHeaderValue al archivo .
- enableRangeProcessing
- Boolean
Establézcalo en true
para habilitar el procesamiento de solicitudes de intervalo.
Devoluciones
creado FileStreamResult para la respuesta.
- Atributos
Comentarios
El fileStream
parámetro se elimina después de enviar la respuesta.
Se aplica a
File(Byte[], String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo con el especificado fileContents
como contenido (Status200OK), el especificado contentType
como Content-Type y el especificado fileDownloadName
como nombre de archivo sugerido.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileContentResult ^ File(cli::array <System::Byte> ^ fileContents, System::String ^ contentType, System::String ^ fileDownloadName, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType, string fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType, string? fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : byte[] * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.FileContentResult
override this.File : byte[] * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.FileContentResult
Public Overridable Function File (fileContents As Byte(), contentType As String, fileDownloadName As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue, enableRangeProcessing As Boolean) As FileContentResult
Parámetros
- fileContents
- Byte[]
Contenido del archivo.
- contentType
- String
El tipo de contenido del archivo.
- fileDownloadName
- String
Nombre de archivo sugerido.
- lastModified
- Nullable<DateTimeOffset>
DateTimeOffset de cuándo se modificó por última vez el archivo.
- entityTag
- EntityTagHeaderValue
Asociado EntityTagHeaderValue al archivo .
- enableRangeProcessing
- Boolean
Establézcalo en true
para habilitar el procesamiento de solicitudes de intervalo.
Devoluciones
creado FileContentResult para la respuesta.
- Atributos
Se aplica a
File(String, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve el archivo especificado por virtualPath
(Status200OK), el especificado contentType
como Content-Type y el especificado fileDownloadName
como el nombre de archivo sugerido.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::VirtualFileResult ^ File(System::String ^ virtualPath, System::String ^ contentType, System::String ^ fileDownloadName, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType, string fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType, string? fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : string * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.VirtualFileResult
override this.File : string * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.VirtualFileResult
Public Overridable Function File (virtualPath As String, contentType As String, fileDownloadName As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue) As VirtualFileResult
Parámetros
- virtualPath
- String
Ruta de acceso virtual del archivo que se va a devolver.
- contentType
- String
El tipo de contenido del archivo.
- fileDownloadName
- String
Nombre de archivo sugerido.
- lastModified
- Nullable<DateTimeOffset>
DateTimeOffset de cuándo se modificó por última vez el archivo.
- entityTag
- EntityTagHeaderValue
Asociado EntityTagHeaderValue al archivo .
Devoluciones
creado VirtualFileResult para la respuesta.
- Atributos
Se aplica a
File(String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve el archivo especificado por virtualPath
(Status200OK) y el especificado contentType
como Content-Type.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::VirtualFileResult ^ File(System::String ^ virtualPath, System::String ^ contentType, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.VirtualFileResult
override this.File : string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.VirtualFileResult
Public Overridable Function File (virtualPath As String, contentType As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue, enableRangeProcessing As Boolean) As VirtualFileResult
Parámetros
- virtualPath
- String
Ruta de acceso virtual del archivo que se va a devolver.
- contentType
- String
El tipo de contenido del archivo.
- lastModified
- Nullable<DateTimeOffset>
DateTimeOffset de cuándo se modificó por última vez el archivo.
- entityTag
- EntityTagHeaderValue
Asociado EntityTagHeaderValue al archivo .
- enableRangeProcessing
- Boolean
Establézcalo en true
para habilitar el procesamiento de solicitudes de intervalo.
Devoluciones
creado VirtualFileResult para la respuesta.
- Atributos
Se aplica a
File(Stream, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo en el especificado fileStream
(Status200OK), el especificado contentType
como Content-Type y el especificado fileDownloadName
como nombre de archivo sugerido.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileStreamResult ^ File(System::IO::Stream ^ fileStream, System::String ^ contentType, System::String ^ fileDownloadName, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType, string fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType, string? fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : System.IO.Stream * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.FileStreamResult
override this.File : System.IO.Stream * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.FileStreamResult
Public Overridable Function File (fileStream As Stream, contentType As String, fileDownloadName As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue) As FileStreamResult
Parámetros
- contentType
- String
El tipo de contenido del archivo.
- fileDownloadName
- String
Nombre de archivo sugerido.
- lastModified
- Nullable<DateTimeOffset>
DateTimeOffset de cuándo se modificó por última vez el archivo.
- entityTag
- EntityTagHeaderValue
Asociado EntityTagHeaderValue al archivo .
Devoluciones
creado FileStreamResult para la respuesta.
- Atributos
Comentarios
El fileStream
parámetro se elimina después de enviar la respuesta.
Se aplica a
File(Stream, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo en el especificado fileStream
(Status200OK) y el especificado contentType
como Content-Type.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileStreamResult ^ File(System::IO::Stream ^ fileStream, System::String ^ contentType, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : System.IO.Stream * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.FileStreamResult
override this.File : System.IO.Stream * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.FileStreamResult
Public Overridable Function File (fileStream As Stream, contentType As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue, enableRangeProcessing As Boolean) As FileStreamResult
Parámetros
- contentType
- String
El tipo de contenido del archivo.
- lastModified
- Nullable<DateTimeOffset>
DateTimeOffset de cuándo se modificó por última vez el archivo.
- entityTag
- EntityTagHeaderValue
Asociado EntityTagHeaderValue al archivo .
- enableRangeProcessing
- Boolean
Establézcalo en true
para habilitar el procesamiento de solicitudes de intervalo.
Devoluciones
creado FileStreamResult para la respuesta.
- Atributos
Comentarios
El fileStream
parámetro se elimina después de enviar la respuesta.
Se aplica a
File(Byte[], String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo con el especificado fileContents
como contenido (Status200OK), el especificado contentType
como Content-Type y el especificado fileDownloadName
como nombre de archivo sugerido.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileContentResult ^ File(cli::array <System::Byte> ^ fileContents, System::String ^ contentType, System::String ^ fileDownloadName, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType, string fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType, string? fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : byte[] * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.FileContentResult
override this.File : byte[] * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.FileContentResult
Public Overridable Function File (fileContents As Byte(), contentType As String, fileDownloadName As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue) As FileContentResult
Parámetros
- fileContents
- Byte[]
Contenido del archivo.
- contentType
- String
El tipo de contenido del archivo.
- fileDownloadName
- String
Nombre de archivo sugerido.
- lastModified
- Nullable<DateTimeOffset>
DateTimeOffset de cuándo se modificó por última vez el archivo.
- entityTag
- EntityTagHeaderValue
Asociado EntityTagHeaderValue al archivo .
Devoluciones
creado FileContentResult para la respuesta.
- Atributos
Se aplica a
File(Byte[], String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo con el especificado fileContents
como contenido (Status200OK) y el especificado contentType
como Content-Type.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileContentResult ^ File(cli::array <System::Byte> ^ fileContents, System::String ^ contentType, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : byte[] * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.FileContentResult
override this.File : byte[] * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.FileContentResult
Public Overridable Function File (fileContents As Byte(), contentType As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue, enableRangeProcessing As Boolean) As FileContentResult
Parámetros
- fileContents
- Byte[]
Contenido del archivo.
- contentType
- String
El tipo de contenido del archivo.
- lastModified
- Nullable<DateTimeOffset>
DateTimeOffset de cuándo se modificó por última vez el archivo.
- entityTag
- EntityTagHeaderValue
Asociado EntityTagHeaderValue al archivo .
- enableRangeProcessing
- Boolean
Establézcalo en true
para habilitar el procesamiento de solicitudes de intervalo.
Devoluciones
creado FileContentResult para la respuesta.
- Atributos
Se aplica a
File(String, String, String, Boolean)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve el archivo especificado por virtualPath
(Status200OK) con el especificado contentType
como Content-Type y el especificado fileDownloadName
como nombre de archivo sugerido.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::VirtualFileResult ^ File(System::String ^ virtualPath, System::String ^ contentType, System::String ^ fileDownloadName, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType, string fileDownloadName, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType, string? fileDownloadName, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : string * string * string * bool -> Microsoft.AspNetCore.Mvc.VirtualFileResult
override this.File : string * string * string * bool -> Microsoft.AspNetCore.Mvc.VirtualFileResult
Public Overridable Function File (virtualPath As String, contentType As String, fileDownloadName As String, enableRangeProcessing As Boolean) As VirtualFileResult
Parámetros
- virtualPath
- String
Ruta de acceso virtual del archivo que se va a devolver.
- contentType
- String
El tipo de contenido del archivo.
- fileDownloadName
- String
Nombre de archivo sugerido.
- enableRangeProcessing
- Boolean
Establézcalo en true
para habilitar el procesamiento de solicitudes de intervalo.
Devoluciones
creado VirtualFileResult para la respuesta.
- Atributos
Se aplica a
File(String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve el archivo especificado por virtualPath
(Status200OK) y el especificado contentType
como Content-Type.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::VirtualFileResult ^ File(System::String ^ virtualPath, System::String ^ contentType, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.VirtualFileResult
override this.File : string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.VirtualFileResult
Public Overridable Function File (virtualPath As String, contentType As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue) As VirtualFileResult
Parámetros
- virtualPath
- String
Ruta de acceso virtual del archivo que se va a devolver.
- contentType
- String
El tipo de contenido del archivo.
- lastModified
- Nullable<DateTimeOffset>
DateTimeOffset de cuándo se modificó por última vez el archivo.
- entityTag
- EntityTagHeaderValue
Asociado EntityTagHeaderValue al archivo .
Devoluciones
creado VirtualFileResult para la respuesta.
- Atributos
Se aplica a
File(Stream, String, String, Boolean)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo en el especificado fileStream
(Status200OK) con el especificado contentType
como Content-Type y el especificado fileDownloadName
como el nombre de archivo sugerido.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileStreamResult ^ File(System::IO::Stream ^ fileStream, System::String ^ contentType, System::String ^ fileDownloadName, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType, string fileDownloadName, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType, string? fileDownloadName, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : System.IO.Stream * string * string * bool -> Microsoft.AspNetCore.Mvc.FileStreamResult
override this.File : System.IO.Stream * string * string * bool -> Microsoft.AspNetCore.Mvc.FileStreamResult
Public Overridable Function File (fileStream As Stream, contentType As String, fileDownloadName As String, enableRangeProcessing As Boolean) As FileStreamResult
Parámetros
- contentType
- String
El tipo de contenido del archivo.
- fileDownloadName
- String
Nombre de archivo sugerido.
- enableRangeProcessing
- Boolean
Establézcalo en true
para habilitar el procesamiento de solicitudes de intervalo.
Devoluciones
creado FileStreamResult para la respuesta.
- Atributos
Comentarios
El fileStream
parámetro se elimina después de enviar la respuesta.
Se aplica a
File(Stream, String)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo en el especificado fileStream
(Status200OK), con el especificado contentType
como Content-Type.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileStreamResult ^ File(System::IO::Stream ^ fileStream, System::String ^ contentType);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : System.IO.Stream * string -> Microsoft.AspNetCore.Mvc.FileStreamResult
override this.File : System.IO.Stream * string -> Microsoft.AspNetCore.Mvc.FileStreamResult
Public Overridable Function File (fileStream As Stream, contentType As String) As FileStreamResult
Parámetros
- contentType
- String
El tipo de contenido del archivo.
Devoluciones
objeto creado FileStreamResult para la respuesta.
- Atributos
Comentarios
El fileStream
parámetro se elimina después de enviar la respuesta.
Se aplica a
File(Byte[], String, String, Boolean)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo con el especificado fileContents
como contenido (Status200OK), el especificado contentType
como Content-Type y el especificado fileDownloadName
como el nombre de archivo sugerido.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileContentResult ^ File(cli::array <System::Byte> ^ fileContents, System::String ^ contentType, System::String ^ fileDownloadName, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType, string fileDownloadName, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType, string? fileDownloadName, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : byte[] * string * string * bool -> Microsoft.AspNetCore.Mvc.FileContentResult
override this.File : byte[] * string * string * bool -> Microsoft.AspNetCore.Mvc.FileContentResult
Public Overridable Function File (fileContents As Byte(), contentType As String, fileDownloadName As String, enableRangeProcessing As Boolean) As FileContentResult
Parámetros
- fileContents
- Byte[]
Contenido del archivo.
- contentType
- String
El tipo de contenido del archivo.
- fileDownloadName
- String
Nombre de archivo sugerido.
- enableRangeProcessing
- Boolean
Establézcalo en true
para habilitar el procesamiento de solicitudes de intervalo.
Devoluciones
objeto creado FileContentResult para la respuesta.
- Atributos
Se aplica a
File(Byte[], String)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo con el especificado fileContents
como contenido (Status200OK) y el especificado contentType
como Content-Type.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileContentResult ^ File(cli::array <System::Byte> ^ fileContents, System::String ^ contentType);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : byte[] * string -> Microsoft.AspNetCore.Mvc.FileContentResult
override this.File : byte[] * string -> Microsoft.AspNetCore.Mvc.FileContentResult
Public Overridable Function File (fileContents As Byte(), contentType As String) As FileContentResult
Parámetros
- fileContents
- Byte[]
Contenido del archivo.
- contentType
- String
El tipo de contenido del archivo.
Devoluciones
objeto creado FileContentResult para la respuesta.
- Atributos
Se aplica a
File(Stream, String, Nullable<DateTimeOffset>, EntityTagHeaderValue)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo en el especificado fileStream
(Status200OK) y el especificado contentType
como Content-Type.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileStreamResult ^ File(System::IO::Stream ^ fileStream, System::String ^ contentType, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : System.IO.Stream * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.FileStreamResult
override this.File : System.IO.Stream * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.FileStreamResult
Public Overridable Function File (fileStream As Stream, contentType As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue) As FileStreamResult
Parámetros
- contentType
- String
El tipo de contenido del archivo.
- lastModified
- Nullable<DateTimeOffset>
DateTimeOffset de cuándo se modificó por última vez el archivo.
- entityTag
- EntityTagHeaderValue
asociado EntityTagHeaderValue al archivo .
Devoluciones
objeto creado FileStreamResult para la respuesta.
- Atributos
Comentarios
El fileStream
parámetro se elimina después de enviar la respuesta.
Se aplica a
File(Byte[], String, Boolean)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo con el especificado fileContents
como contenido (Status200OK) y el especificado contentType
como Content-Type.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileContentResult ^ File(cli::array <System::Byte> ^ fileContents, System::String ^ contentType, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : byte[] * string * bool -> Microsoft.AspNetCore.Mvc.FileContentResult
override this.File : byte[] * string * bool -> Microsoft.AspNetCore.Mvc.FileContentResult
Public Overridable Function File (fileContents As Byte(), contentType As String, enableRangeProcessing As Boolean) As FileContentResult
Parámetros
- fileContents
- Byte[]
Contenido del archivo.
- contentType
- String
El tipo de contenido del archivo.
- enableRangeProcessing
- Boolean
Establézcalo en true
para habilitar el procesamiento de solicitudes de intervalo.
Devoluciones
objeto creado FileContentResult para la respuesta.
- Atributos
Se aplica a
File(Byte[], String, String)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo con el especificado fileContents
como contenido (Status200OK), el especificado contentType
como Content-Type y el especificado fileDownloadName
como el nombre de archivo sugerido.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileContentResult ^ File(cli::array <System::Byte> ^ fileContents, System::String ^ contentType, System::String ^ fileDownloadName);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType, string fileDownloadName);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType, string? fileDownloadName);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : byte[] * string * string -> Microsoft.AspNetCore.Mvc.FileContentResult
override this.File : byte[] * string * string -> Microsoft.AspNetCore.Mvc.FileContentResult
Public Overridable Function File (fileContents As Byte(), contentType As String, fileDownloadName As String) As FileContentResult
Parámetros
- fileContents
- Byte[]
Contenido del archivo.
- contentType
- String
El tipo de contenido del archivo.
- fileDownloadName
- String
Nombre de archivo sugerido.
Devoluciones
objeto creado FileContentResult para la respuesta.
- Atributos
Se aplica a
File(String, String)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve el archivo especificado por virtualPath
(Status200OK) con el especificado contentType
como Content-Type.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::VirtualFileResult ^ File(System::String ^ virtualPath, System::String ^ contentType);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : string * string -> Microsoft.AspNetCore.Mvc.VirtualFileResult
override this.File : string * string -> Microsoft.AspNetCore.Mvc.VirtualFileResult
Public Overridable Function File (virtualPath As String, contentType As String) As VirtualFileResult
Parámetros
- virtualPath
- String
Ruta de acceso virtual del archivo que se va a devolver.
- contentType
- String
El tipo de contenido del archivo.
Devoluciones
objeto creado VirtualFileResult para la respuesta.
- Atributos
Se aplica a
File(Stream, String, String)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo en el especificado fileStream
(Status200OK) con el especificado contentType
como Content-Type y el especificado fileDownloadName
como el nombre de archivo sugerido.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileStreamResult ^ File(System::IO::Stream ^ fileStream, System::String ^ contentType, System::String ^ fileDownloadName);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType, string fileDownloadName);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType, string? fileDownloadName);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : System.IO.Stream * string * string -> Microsoft.AspNetCore.Mvc.FileStreamResult
override this.File : System.IO.Stream * string * string -> Microsoft.AspNetCore.Mvc.FileStreamResult
Public Overridable Function File (fileStream As Stream, contentType As String, fileDownloadName As String) As FileStreamResult
Parámetros
- contentType
- String
El tipo de contenido del archivo.
- fileDownloadName
- String
Nombre de archivo sugerido.
Devoluciones
objeto creado FileStreamResult para la respuesta.
- Atributos
Comentarios
El fileStream
parámetro se elimina después de enviar la respuesta.
Se aplica a
File(String, String, Boolean)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve el archivo especificado por virtualPath
(Status200OK) con el especificado contentType
como Content-Type.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::VirtualFileResult ^ File(System::String ^ virtualPath, System::String ^ contentType, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : string * string * bool -> Microsoft.AspNetCore.Mvc.VirtualFileResult
override this.File : string * string * bool -> Microsoft.AspNetCore.Mvc.VirtualFileResult
Public Overridable Function File (virtualPath As String, contentType As String, enableRangeProcessing As Boolean) As VirtualFileResult
Parámetros
- virtualPath
- String
Ruta de acceso virtual del archivo que se va a devolver.
- contentType
- String
El tipo de contenido del archivo.
- enableRangeProcessing
- Boolean
Establézcalo en true
para habilitar el procesamiento de solicitudes de intervalo.
Devoluciones
objeto creado VirtualFileResult para la respuesta.
- Atributos
Se aplica a
File(String, String, String)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve el archivo especificado por virtualPath
(Status200OK) con el especificado contentType
como Content-Type y el especificado fileDownloadName
como el nombre de archivo sugerido.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::VirtualFileResult ^ File(System::String ^ virtualPath, System::String ^ contentType, System::String ^ fileDownloadName);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType, string fileDownloadName);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType, string? fileDownloadName);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : string * string * string -> Microsoft.AspNetCore.Mvc.VirtualFileResult
override this.File : string * string * string -> Microsoft.AspNetCore.Mvc.VirtualFileResult
Public Overridable Function File (virtualPath As String, contentType As String, fileDownloadName As String) As VirtualFileResult
Parámetros
- virtualPath
- String
Ruta de acceso virtual del archivo que se va a devolver.
- contentType
- String
El tipo de contenido del archivo.
- fileDownloadName
- String
Nombre de archivo sugerido.
Devoluciones
objeto creado VirtualFileResult para la respuesta.
- Atributos
Se aplica a
File(Byte[], String, Nullable<DateTimeOffset>, EntityTagHeaderValue)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo con el especificado fileContents
como contenido (Status200OK) y el especificado contentType
como Content-Type.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileContentResult ^ File(cli::array <System::Byte> ^ fileContents, System::String ^ contentType, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : byte[] * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.FileContentResult
override this.File : byte[] * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.FileContentResult
Public Overridable Function File (fileContents As Byte(), contentType As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue) As FileContentResult
Parámetros
- fileContents
- Byte[]
Contenido del archivo.
- contentType
- String
El tipo de contenido del archivo.
- lastModified
- Nullable<DateTimeOffset>
DateTimeOffset de cuándo se modificó por última vez el archivo.
- entityTag
- EntityTagHeaderValue
asociado EntityTagHeaderValue al archivo .
Devoluciones
objeto creado FileContentResult para la respuesta.
- Atributos
Se aplica a
File(Stream, String, Boolean)
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
- Source:
- ControllerBase.cs
Devuelve un archivo en el especificado fileStream
(Status200OK), con el especificado contentType
como Content-Type.
Esto admite solicitudes de intervalo (Status206PartialContent o Status416RangeNotSatisfiable si el intervalo no es satisfiable).
public:
virtual Microsoft::AspNetCore::Mvc::FileStreamResult ^ File(System::IO::Stream ^ fileStream, System::String ^ contentType, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member File : System.IO.Stream * string * bool -> Microsoft.AspNetCore.Mvc.FileStreamResult
override this.File : System.IO.Stream * string * bool -> Microsoft.AspNetCore.Mvc.FileStreamResult
Public Overridable Function File (fileStream As Stream, contentType As String, enableRangeProcessing As Boolean) As FileStreamResult
Parámetros
- contentType
- String
El tipo de contenido del archivo.
- enableRangeProcessing
- Boolean
Establézcalo en true
para habilitar el procesamiento de solicitudes de intervalo.
Devoluciones
objeto creado FileStreamResult para la respuesta.
- Atributos
Comentarios
El fileStream
parámetro se elimina después de enviar la respuesta.