PhysicalFileResult 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
PhysicalFileResult(String, MediaTypeHeaderValue) |
使用提供的 |
PhysicalFileResult(String, String) |
使用提供的 |
PhysicalFileResult(String, MediaTypeHeaderValue)
使用提供的 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)
使用提供的 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 標頭。