Condividi tramite


FileContentResult Costruttori

Definizione

Overload

FileContentResult(Byte[], MediaTypeHeaderValue)

Crea una nuova FileContentResult istanza con l'oggetto specificato fileContents e l'oggetto fornito contentType.

FileContentResult(Byte[], String)

Crea una nuova FileContentResult istanza con l'oggetto specificato fileContents e l'oggetto fornito contentType.

FileContentResult(Byte[], MediaTypeHeaderValue)

Origine:
FileContentResult.cs
Origine:
FileContentResult.cs
Origine:
FileContentResult.cs

Crea una nuova FileContentResult istanza con l'oggetto specificato fileContents e l'oggetto fornito contentType.

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)

Parametri

fileContents
Byte[]

Byte che rappresentano il contenuto del file.

contentType
MediaTypeHeaderValue

Intestazione Content-Type della risposta.

Si applica a

FileContentResult(Byte[], String)

Origine:
FileContentResult.cs
Origine:
FileContentResult.cs
Origine:
FileContentResult.cs

Crea una nuova FileContentResult istanza con l'oggetto specificato fileContents e l'oggetto fornito contentType.

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)

Parametri

fileContents
Byte[]

Byte che rappresentano il contenuto del file.

contentType
String

Intestazione Content-Type della risposta.

Si applica a