Sdílet prostřednictvím


ReadOnlyFile Konstruktory

Definice

Přetížení

ReadOnlyFile(FileBase)

Inicializuje novou instanci ReadOnlyFile třídy z existující instance.

ReadOnlyFile(String)

Inicializuje novou instanci ReadOnlyFile třídy z cesty k souboru.

ReadOnlyFile(String, String)

Inicializuje novou instanci ReadOnlyFile třídy z cesty k souboru, explicitně specifikuje typ obsahu.

ReadOnlyFile(FileBase)

Zdroj:
FileSystem.shared.cs
Zdroj:
FileSystem.shared.cs

Inicializuje novou instanci ReadOnlyFile třídy z existující instance.

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

Parametry

file
FileBase

Instance FileBase , která se použije ke klonování.

Platí pro

ReadOnlyFile(String)

Zdroj:
FileSystem.shared.cs
Zdroj:
FileSystem.shared.cs

Inicializuje novou instanci ReadOnlyFile třídy z cesty k souboru.

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

Parametry

fullPath
String

Úplná cesta k souboru odpovídajícího souboru v systému souborů.

Platí pro

ReadOnlyFile(String, String)

Zdroj:
FileSystem.shared.cs
Zdroj:
FileSystem.shared.cs

Inicializuje novou instanci ReadOnlyFile třídy z cesty k souboru, explicitně specifikuje typ obsahu.

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

Parametry

fullPath
String

Úplná cesta k souboru odpovídajícího souboru v systému souborů.

contentType
String

Typ obsahu (typ MIME) souboru (např.: image/png).

Platí pro