FileContentResult Constructeurs
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
FileContentResult(Byte[], MediaTypeHeaderValue) |
Crée un FileContentResult instance avec le fourni |
FileContentResult(Byte[], String) |
Crée un FileContentResult instance avec le fourni |
FileContentResult(Byte[], MediaTypeHeaderValue)
- Source:
- FileContentResult.cs
- Source:
- FileContentResult.cs
- Source:
- FileContentResult.cs
Crée un FileContentResult instance avec le fourni fileContents
et le fournicontentType
.
public:
FileContentResult(cli::array <System::Byte> ^ fileContents, Microsoft::Net::Http::Headers::MediaTypeHeaderValue ^ contentType);
public FileContentResult (byte[] fileContents, Microsoft.Net.Http.Headers.MediaTypeHeaderValue contentType);
new Microsoft.AspNetCore.Mvc.FileContentResult : byte[] * Microsoft.Net.Http.Headers.MediaTypeHeaderValue -> Microsoft.AspNetCore.Mvc.FileContentResult
Public Sub New (fileContents As Byte(), contentType As MediaTypeHeaderValue)
Paramètres
- fileContents
- Byte[]
Octets qui représentent le contenu du fichier.
- contentType
- MediaTypeHeaderValue
En-tête Content-Type de la réponse.
S’applique à
FileContentResult(Byte[], String)
- Source:
- FileContentResult.cs
- Source:
- FileContentResult.cs
- Source:
- FileContentResult.cs
Crée un FileContentResult instance avec le fourni fileContents
et le fournicontentType
.
public:
FileContentResult(cli::array <System::Byte> ^ fileContents, System::String ^ contentType);
public FileContentResult (byte[] fileContents, string contentType);
new Microsoft.AspNetCore.Mvc.FileContentResult : byte[] * string -> Microsoft.AspNetCore.Mvc.FileContentResult
Public Sub New (fileContents As Byte(), contentType As String)
Paramètres
- fileContents
- Byte[]
Octets qui représentent le contenu du fichier.
- contentType
- String
En-tête Content-Type de la réponse.