共用方式為


FileContentResult 建構函式

定義

多載

FileContentResult(Byte[], MediaTypeHeaderValue)

使用提供的 fileContents 和 提供的 contentType ,建立新的 FileContentResult 實例。

FileContentResult(Byte[], String)

使用提供的 fileContents 和 提供的 contentType ,建立新的 FileContentResult 實例。

FileContentResult(Byte[], MediaTypeHeaderValue)

來源:
FileContentResult.cs
來源:
FileContentResult.cs
來源:
FileContentResult.cs

使用提供的 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)

來源:
FileContentResult.cs
來源:
FileContentResult.cs
來源:
FileContentResult.cs

使用提供的 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 標頭。

適用於