Partager via


FileContentResult Constructeurs

Définition

Surcharges

FileContentResult(Byte[], MediaTypeHeaderValue)

Crée un FileContentResult instance avec le fourni fileContents et le fournicontentType.

FileContentResult(Byte[], String)

Crée un FileContentResult instance avec le fourni fileContents et le fournicontentType.

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.

S’applique à