FileContentResult 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
FileContentResult(Byte[], MediaTypeHeaderValue) |
使用提供的 |
FileContentResult(Byte[], String) |
使用提供的 |
FileContentResult(Byte[], MediaTypeHeaderValue)
使用提供的 fileContents
和 提供的 contentType
,建立新的 FileContentResult 實例。
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)
參數
- fileContents
- Byte[]
表示檔案內容的位元組。
- contentType
- MediaTypeHeaderValue
回應的 Content-Type 標頭。
適用於
FileContentResult(Byte[], String)
使用提供的 fileContents
和 提供的 contentType
,建立新的 FileContentResult 實例。
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)
參數
- fileContents
- Byte[]
表示檔案內容的位元組。
- contentType
- String
回應的 Content-Type 標頭。