Compartilhar via


PageModel.PhysicalFile Método

Definição

Sobrecargas

PhysicalFile(String, String)

Retorna o arquivo especificado por physicalPath (Status200OK) com o especificado contentType como Content-Type.

PhysicalFile(String, String, String)

Retorna o arquivo especificado por physicalPath (Status200OK) com o especificado contentType como Content-Type e o especificado fileDownloadName como o nome de arquivo sugerido.

PhysicalFile(String, String)

Origem:
PageModel.cs
Origem:
PageModel.cs
Origem:
PageModel.cs

Retorna o arquivo especificado por physicalPath (Status200OK) com o especificado contentType como Content-Type.

public:
 virtual Microsoft::AspNetCore::Mvc::PhysicalFileResult ^ PhysicalFile(System::String ^ physicalPath, System::String ^ contentType);
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType);
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 físico do arquivo a ser retornado.

contentType
String

O Content-Type do arquivo.

Retornos

O criado PhysicalFileResult para a resposta.

Aplica-se a

PhysicalFile(String, String, String)

Origem:
PageModel.cs
Origem:
PageModel.cs
Origem:
PageModel.cs

Retorna o arquivo especificado por physicalPath (Status200OK) com o especificado contentType como Content-Type e o especificado fileDownloadName como o nome de arquivo sugerido.

public:
 virtual Microsoft::AspNetCore::Mvc::PhysicalFileResult ^ PhysicalFile(System::String ^ physicalPath, System::String ^ contentType, System::String ^ fileDownloadName);
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, string fileDownloadName);
public virtual Microsoft.AspNetCore.Mvc.PhysicalFileResult PhysicalFile (string physicalPath, string contentType, string? fileDownloadName);
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 físico do arquivo a ser retornado.

contentType
String

O Content-Type do arquivo.

fileDownloadName
String

O nome do arquivo sugerido.

Retornos

O criado PhysicalFileResult para a resposta.

Aplica-se a