PageBase.File Metoda
Definice
Důležité
Některé informace platí pro předběžně vydaný produkt, který se může zásadně změnit, než ho výrobce nebo autor vydá. Microsoft neposkytuje žádné záruky, výslovné ani předpokládané, týkající se zde uváděných informací.
Přetížení
File(Byte[], String) |
Vrátí soubor se zadaným |
File(Stream, String) |
Vrátí soubor v zadaném |
File(String, String) |
Vrátí soubor určený parametrem |
File(Byte[], String, String) |
Vrátí soubor se zadaným |
File(Stream, String, String) |
Vrátí soubor v zadaném |
File(String, String, String) |
Vrátí soubor určený parametrem |
File(Byte[], String)
- Zdroj:
- PageBase.cs
- Zdroj:
- PageBase.cs
- Zdroj:
- PageBase.cs
Vrátí soubor se zadaným fileContents
jako obsah (Status200OK) a zadaným contentType
jako Content-Type.
public:
virtual Microsoft::AspNetCore::Mvc::FileContentResult ^ File(cli::array <System::Byte> ^ fileContents, System::String ^ contentType);
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType);
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
Parametry
- fileContents
- Byte[]
Obsah souboru.
- contentType
- String
Typ obsahu souboru.
Návraty
Vytvořený FileContentResult pro odpověď.
Platí pro
File(Stream, String)
- Zdroj:
- PageBase.cs
- Zdroj:
- PageBase.cs
- Zdroj:
- PageBase.cs
Vrátí soubor v zadaném fileStream
typu (Status200OK) se zadaným contentType
typem obsahu.
public:
virtual Microsoft::AspNetCore::Mvc::FileStreamResult ^ File(System::IO::Stream ^ fileStream, System::String ^ contentType);
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType);
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
Parametry
- contentType
- String
Typ obsahu souboru.
Návraty
Vytvořený FileStreamResult pro odpověď.
Platí pro
File(String, String)
- Zdroj:
- PageBase.cs
- Zdroj:
- PageBase.cs
- Zdroj:
- PageBase.cs
Vrátí soubor určený parametrem virtualPath
(Status200OK) se zadaným contentType
typem obsahu.
public:
virtual Microsoft::AspNetCore::Mvc::VirtualFileResult ^ File(System::String ^ virtualPath, System::String ^ contentType);
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType);
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
Parametry
- virtualPath
- String
Virtuální cesta k souboru, který se má vrátit.
- contentType
- String
Typ obsahu souboru.
Návraty
Vytvořený VirtualFileResult pro odpověď.
Platí pro
File(Byte[], String, String)
- Zdroj:
- PageBase.cs
- Zdroj:
- PageBase.cs
- Zdroj:
- PageBase.cs
Vrátí soubor se zadaným fileContents
jako obsah (Status200OK), zadaným contentType
jako Content-Type a zadaným fileDownloadName
jako navrhovaný název souboru.
public:
virtual Microsoft::AspNetCore::Mvc::FileContentResult ^ File(cli::array <System::Byte> ^ fileContents, System::String ^ contentType, System::String ^ fileDownloadName);
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType, string fileDownloadName);
public virtual Microsoft.AspNetCore.Mvc.FileContentResult File (byte[] fileContents, string contentType, string? fileDownloadName);
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
Parametry
- fileContents
- Byte[]
Obsah souboru.
- contentType
- String
Typ obsahu souboru.
- fileDownloadName
- String
Navrhovaný název souboru
Návraty
Vytvořený FileContentResult pro odpověď.
Platí pro
File(Stream, String, String)
- Zdroj:
- PageBase.cs
- Zdroj:
- PageBase.cs
- Zdroj:
- PageBase.cs
Vrátí soubor v zadaném fileStream
(Status200OK) se zadaným contentType
jako Content-Type a zadaným fileDownloadName
jako navrhovaným názvem souboru.
public:
virtual Microsoft::AspNetCore::Mvc::FileStreamResult ^ File(System::IO::Stream ^ fileStream, System::String ^ contentType, System::String ^ fileDownloadName);
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType, string fileDownloadName);
public virtual Microsoft.AspNetCore.Mvc.FileStreamResult File (System.IO.Stream fileStream, string contentType, string? fileDownloadName);
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
Parametry
- contentType
- String
Typ obsahu souboru.
- fileDownloadName
- String
Navrhovaný název souboru
Návraty
Vytvořený FileStreamResult pro odpověď.
Platí pro
File(String, String, String)
- Zdroj:
- PageBase.cs
- Zdroj:
- PageBase.cs
- Zdroj:
- PageBase.cs
Vrátí soubor určený parametrem virtualPath
(Status200OK) se zadaným contentType
jako Content-Type a zadaným fileDownloadName
jako navrhovaným názvem souboru.
public:
virtual Microsoft::AspNetCore::Mvc::VirtualFileResult ^ File(System::String ^ virtualPath, System::String ^ contentType, System::String ^ fileDownloadName);
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType, string fileDownloadName);
public virtual Microsoft.AspNetCore.Mvc.VirtualFileResult File (string virtualPath, string contentType, string? fileDownloadName);
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
Parametry
- virtualPath
- String
Virtuální cesta k souboru, který se má vrátit.
- contentType
- String
Typ obsahu souboru.
- fileDownloadName
- String
Navrhovaný název souboru
Návraty
Vytvořený VirtualFileResult pro odpověď.