共用方式為


FileResult 建構函式

定義

多載

FileResult(FileBase)

從現有的執行個體初始化 FileResult 類別的新執行個體。

FileResult(String)

從檔案路徑初始化 類別的新實例 FileResult

FileResult(String, String)

從檔案路徑初始化 類別的新實例 FileResult ,明確指定內容類型。

FileResult(FileBase)

來源:
FileSystem.shared.cs
來源:
FileSystem.shared.cs

從現有的執行個體初始化 FileResult 類別的新執行個體。

public:
 FileResult(Microsoft::Maui::Storage::FileBase ^ file);
public FileResult (Microsoft.Maui.Storage.FileBase file);
new Microsoft.Maui.Storage.FileResult : Microsoft.Maui.Storage.FileBase -> Microsoft.Maui.Storage.FileResult
Public Sub New (file As FileBase)

參數

file
FileBase

FileBase將用來複製的 實例。

適用於

FileResult(String)

來源:
FileSystem.shared.cs
來源:
FileSystem.shared.cs

從檔案路徑初始化 類別的新實例 FileResult

public:
 FileResult(System::String ^ fullPath);
public FileResult (string fullPath);
new Microsoft.Maui.Storage.FileResult : string -> Microsoft.Maui.Storage.FileResult
Public Sub New (fullPath As String)

參數

fullPath
String

檔系統上對應檔案的完整檔案路徑。

適用於

FileResult(String, String)

來源:
FileSystem.shared.cs
來源:
FileSystem.shared.cs

從檔案路徑初始化 類別的新實例 FileResult ,明確指定內容類型。

public:
 FileResult(System::String ^ fullPath, System::String ^ contentType);
public FileResult (string fullPath, string contentType);
new Microsoft.Maui.Storage.FileResult : string * string -> Microsoft.Maui.Storage.FileResult
Public Sub New (fullPath As String, contentType As String)

參數

fullPath
String

檔系統上對應檔案的完整檔案路徑。

contentType
String

檔案的內容類型 (MIME 類型)(例如: image/png)。

適用於