ControllerBase.PhysicalFile Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
PhysicalFile(String, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean) |
Retorna o arquivo especificado por |
PhysicalFile(String, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue) |
Retorna o arquivo especificado por |
PhysicalFile(String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean) |
Retorna o arquivo especificado por |
PhysicalFile(String, String, String, Boolean) |
Retorna o arquivo especificado por |
PhysicalFile(String, String, Boolean) |
Retorna o arquivo especificado por |
PhysicalFile(String, String, String) |
Retorna o arquivo especificado por |
PhysicalFile(String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue) |
Retorna o arquivo especificado por |
PhysicalFile(String, String) |
Retorna o arquivo especificado por |
PhysicalFile(String, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean)
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
Retorna o arquivo especificado por physicalPath
(Status200OK), o contentType
especificado como o Tipo de Conteúdo e o fileDownloadName
especificado como o nome do arquivo sugerido.
Isso dá suporte a solicitações de intervalo (Status206PartialContent ou Status416RangeNotSatisfiable se o intervalo não for satisfiável).
public:
virtual Microsoft::AspNetCore::Mvc::PhysicalFileResult ^ PhysicalFile(System::String ^ physicalPath, 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.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, string fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, string? fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member PhysicalFile : string * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
override this.PhysicalFile : string * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
Public Overridable Function PhysicalFile (physicalPath As String, contentType As String, fileDownloadName As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue, enableRangeProcessing As Boolean) As PhysicalFileResult
Parâmetros
- physicalPath
- String
O caminho para o arquivo. O caminho deve ser um caminho absoluto.
- contentType
- String
O tipo de conteúdo do arquivo.
- fileDownloadName
- String
O nome do arquivo sugerido.
- lastModified
- Nullable<DateTimeOffset>
O DateTimeOffset de quando o arquivo foi modificado pela última vez.
- entityTag
- EntityTagHeaderValue
O EntityTagHeaderValue associado ao arquivo.
- enableRangeProcessing
- Boolean
Defina como true
para habilitar o processamento de solicitações de intervalo.
Retornos
O PhysicalFileResult criado para a resposta.
- Atributos
Aplica-se a
PhysicalFile(String, String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue)
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
Retorna o arquivo especificado por physicalPath
(Status200OK), o contentType
especificado como o Tipo de Conteúdo e o fileDownloadName
especificado como o nome do arquivo sugerido.
Isso dá suporte a solicitações de intervalo (Status206PartialContent ou Status416RangeNotSatisfiable se o intervalo não for satisfiável).
public:
virtual Microsoft::AspNetCore::Mvc::PhysicalFileResult ^ PhysicalFile(System::String ^ physicalPath, System::String ^ contentType, System::String ^ fileDownloadName, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, string fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, string? fileDownloadName, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member PhysicalFile : string * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
override this.PhysicalFile : string * string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
Public Overridable Function PhysicalFile (physicalPath As String, contentType As String, fileDownloadName As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue) As PhysicalFileResult
Parâmetros
- physicalPath
- String
O caminho para o arquivo. O caminho deve ser um caminho absoluto.
- contentType
- String
O tipo de conteúdo do arquivo.
- fileDownloadName
- String
O nome do arquivo sugerido.
- lastModified
- Nullable<DateTimeOffset>
O DateTimeOffset de quando o arquivo foi modificado pela última vez.
- entityTag
- EntityTagHeaderValue
O EntityTagHeaderValue associado ao arquivo.
Retornos
O PhysicalFileResult criado para a resposta.
- Atributos
Aplica-se a
PhysicalFile(String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue, Boolean)
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
Retorna o arquivo especificado por physicalPath
(Status200OK) e o contentType
especificado como o Tipo de Conteúdo.
Isso dá suporte a solicitações de intervalo (Status206PartialContent ou Status416RangeNotSatisfiable se o intervalo não for satisfiável).
public:
virtual Microsoft::AspNetCore::Mvc::PhysicalFileResult ^ PhysicalFile(System::String ^ physicalPath, System::String ^ contentType, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member PhysicalFile : string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
override this.PhysicalFile : string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue * bool -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
Public Overridable Function PhysicalFile (physicalPath As String, contentType As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue, enableRangeProcessing As Boolean) As PhysicalFileResult
Parâmetros
- physicalPath
- String
O caminho para o arquivo. O caminho deve ser um caminho absoluto.
- contentType
- String
O tipo de conteúdo do arquivo.
- lastModified
- Nullable<DateTimeOffset>
O DateTimeOffset de quando o arquivo foi modificado pela última vez.
- entityTag
- EntityTagHeaderValue
O EntityTagHeaderValue associado ao arquivo.
- enableRangeProcessing
- Boolean
Defina como true
para habilitar o processamento de solicitações de intervalo.
Retornos
O PhysicalFileResult criado para a resposta.
- Atributos
Aplica-se a
PhysicalFile(String, String, String, Boolean)
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
Retorna o arquivo especificado por physicalPath
(Status200OK) com o contentType
especificado como o Tipo de Conteúdo e o fileDownloadName
especificado como o nome do arquivo sugerido.
Isso dá suporte a solicitações de intervalo (Status206PartialContent ou Status416RangeNotSatisfiable se o intervalo não for satisfiável).
public:
virtual Microsoft::AspNetCore::Mvc::PhysicalFileResult ^ PhysicalFile(System::String ^ physicalPath, System::String ^ contentType, System::String ^ fileDownloadName, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, string fileDownloadName, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, string? fileDownloadName, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member PhysicalFile : string * string * string * bool -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
override this.PhysicalFile : string * string * string * bool -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
Public Overridable Function PhysicalFile (physicalPath As String, contentType As String, fileDownloadName As String, enableRangeProcessing As Boolean) As PhysicalFileResult
Parâmetros
- physicalPath
- String
O caminho para o arquivo. O caminho deve ser um caminho absoluto.
- contentType
- String
O tipo de conteúdo do arquivo.
- fileDownloadName
- String
O nome do arquivo sugerido.
- enableRangeProcessing
- Boolean
Defina como true
para habilitar o processamento de solicitações de intervalo.
Retornos
O PhysicalFileResult criado para a resposta.
- Atributos
Aplica-se a
PhysicalFile(String, String, Boolean)
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
Retorna o arquivo especificado por physicalPath
(Status200OK) com o contentType
especificado como o Tipo de Conteúdo.
Isso dá suporte a solicitações de intervalo (Status206PartialContent ou Status416RangeNotSatisfiable se o intervalo não for satisfiável).
public:
virtual Microsoft::AspNetCore::Mvc::PhysicalFileResult ^ PhysicalFile(System::String ^ physicalPath, System::String ^ contentType, bool enableRangeProcessing);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, bool enableRangeProcessing);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member PhysicalFile : string * string * bool -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
override this.PhysicalFile : string * string * bool -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
Public Overridable Function PhysicalFile (physicalPath As String, contentType As String, enableRangeProcessing As Boolean) As PhysicalFileResult
Parâmetros
- physicalPath
- String
O caminho para o arquivo. O caminho deve ser um caminho absoluto.
- contentType
- String
O tipo de conteúdo do arquivo.
- enableRangeProcessing
- Boolean
Defina como true
para habilitar o processamento de solicitações de intervalo.
Retornos
O PhysicalFileResult criado para a resposta.
- Atributos
Aplica-se a
PhysicalFile(String, String, String)
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
Retorna o arquivo especificado por physicalPath
(Status200OK) com o contentType
especificado como o Tipo de Conteúdo e o fileDownloadName
especificado como o nome do arquivo sugerido.
Isso dá suporte a solicitações de intervalo (Status206PartialContent ou Status416RangeNotSatisfiable se o intervalo não for satisfiável).
public:
virtual Microsoft::AspNetCore::Mvc::PhysicalFileResult ^ PhysicalFile(System::String ^ physicalPath, System::String ^ contentType, System::String ^ fileDownloadName);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, string fileDownloadName);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, string? fileDownloadName);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member PhysicalFile : string * string * string -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
override this.PhysicalFile : string * string * string -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
Public Overridable Function PhysicalFile (physicalPath As String, contentType As String, fileDownloadName As String) As PhysicalFileResult
Parâmetros
- physicalPath
- String
O caminho para o arquivo. O caminho deve ser um caminho absoluto.
- contentType
- String
O tipo de conteúdo do arquivo.
- fileDownloadName
- String
O nome do arquivo sugerido.
Retornos
O PhysicalFileResult criado para a resposta.
- Atributos
Aplica-se a
PhysicalFile(String, String, Nullable<DateTimeOffset>, EntityTagHeaderValue)
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
Retorna o arquivo especificado por physicalPath
(Status200OK) e o contentType
especificado como o Tipo de Conteúdo.
Isso dá suporte a solicitações de intervalo (Status206PartialContent ou Status416RangeNotSatisfiable se o intervalo não for satisfiável).
public:
virtual Microsoft::AspNetCore::Mvc::PhysicalFileResult ^ PhysicalFile(System::String ^ physicalPath, System::String ^ contentType, Nullable<DateTimeOffset> lastModified, Microsoft::Net::Http::Headers::EntityTagHeaderValue ^ entityTag);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, DateTimeOffset? lastModified, Microsoft.Net.Http.Headers.EntityTagHeaderValue entityTag);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member PhysicalFile : string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
override this.PhysicalFile : string * string * Nullable<DateTimeOffset> * Microsoft.Net.Http.Headers.EntityTagHeaderValue -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
Public Overridable Function PhysicalFile (physicalPath As String, contentType As String, lastModified As Nullable(Of DateTimeOffset), entityTag As EntityTagHeaderValue) As PhysicalFileResult
Parâmetros
- physicalPath
- String
O caminho para o arquivo. O caminho deve ser um caminho absoluto.
- contentType
- String
O tipo de conteúdo do arquivo.
- lastModified
- Nullable<DateTimeOffset>
O DateTimeOffset de quando o arquivo foi modificado pela última vez.
- entityTag
- EntityTagHeaderValue
O EntityTagHeaderValue associado ao arquivo.
Retornos
O PhysicalFileResult criado para a resposta.
- Atributos
Aplica-se a
PhysicalFile(String, String)
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
- Origem:
- ControllerBase.cs
Retorna o arquivo especificado por physicalPath
(Status200OK) com o contentType
especificado como o Tipo de Conteúdo.
Isso dá suporte a solicitações de intervalo (Status206PartialContent ou Status416RangeNotSatisfiable se o intervalo não for satisfiável).
public:
virtual Microsoft::AspNetCore::Mvc::PhysicalFileResult ^ PhysicalFile(System::String ^ physicalPath, System::String ^ contentType);
[Microsoft.AspNetCore.Mvc.NonAction]
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType);
[<Microsoft.AspNetCore.Mvc.NonAction>]
abstract member PhysicalFile : string * string -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
override this.PhysicalFile : string * string -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
Public Overridable Function PhysicalFile (physicalPath As String, contentType As String) As PhysicalFileResult
Parâmetros
- physicalPath
- String
O caminho para o arquivo. O caminho deve ser um caminho absoluto.
- contentType
- String
O tipo de conteúdo do arquivo.
Retornos
O PhysicalFileResult criado para a resposta.
- Atributos