FileContentResult Costruttori
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
FileContentResult(Byte[], MediaTypeHeaderValue) |
Crea una nuova FileContentResult istanza con l'oggetto specificato |
FileContentResult(Byte[], String) |
Crea una nuova FileContentResult istanza con l'oggetto specificato |
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.