共用方式為


PhysicalFileResult 建構函式

定義

多載

PhysicalFileResult(String, MediaTypeHeaderValue)

使用提供的 fileName 和 提供的 contentType ,建立新的 PhysicalFileResult 實例。

PhysicalFileResult(String, String)

使用提供的 fileName 和 提供的 contentType ,建立新的 PhysicalFileResult 實例。

PhysicalFileResult(String, MediaTypeHeaderValue)

來源:
PhysicalFileResult.cs
來源:
PhysicalFileResult.cs
來源:
PhysicalFileResult.cs

使用提供的 fileName 和 提供的 contentType ,建立新的 PhysicalFileResult 實例。

public:
 PhysicalFileResult(System::String ^ fileName, Microsoft::Net::Http::Headers::MediaTypeHeaderValue ^ contentType);
public PhysicalFileResult (string fileName, Microsoft.Net.Http.Headers.MediaTypeHeaderValue contentType);
new Microsoft.AspNetCore.Mvc.PhysicalFileResult : string * Microsoft.Net.Http.Headers.MediaTypeHeaderValue -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
Public Sub New (fileName As String, contentType As MediaTypeHeaderValue)

參數

fileName
String

檔案的路徑。 路徑必須是絕對路徑。

contentType
MediaTypeHeaderValue

回應的 Content-Type 標頭。

適用於

PhysicalFileResult(String, String)

來源:
PhysicalFileResult.cs
來源:
PhysicalFileResult.cs
來源:
PhysicalFileResult.cs

使用提供的 fileName 和 提供的 contentType ,建立新的 PhysicalFileResult 實例。

public:
 PhysicalFileResult(System::String ^ fileName, System::String ^ contentType);
public PhysicalFileResult (string fileName, string contentType);
new Microsoft.AspNetCore.Mvc.PhysicalFileResult : string * string -> Microsoft.AspNetCore.Mvc.PhysicalFileResult
Public Sub New (fileName As String, contentType As String)

參數

fileName
String

檔案的路徑。 路徑必須是絕對路徑。

contentType
String

回應的 Content-Type 標頭。

適用於