Freigeben über


PathIO.ReadTextAsync Methode

Definition

Überlädt

ReadTextAsync(String)

Liest den Inhalt der Datei am angegebenen Pfad oder dem angegebenen URI (Uniform Resource Identifier) und gibt Text zurück.

ReadTextAsync(String, UnicodeEncoding)

Liest den Inhalt der Datei am angegebenen Pfad oder URI (Uniform Resource Identifier) unter Verwendung der angegebenen Zeichencodierung und gibt Text zurück.

ReadTextAsync(String)

Liest den Inhalt der Datei am angegebenen Pfad oder dem angegebenen URI (Uniform Resource Identifier) und gibt Text zurück.

public:
 static IAsyncOperation<Platform::String ^> ^ ReadTextAsync(Platform::String ^ absolutePath);
/// [Windows.Foundation.Metadata.Overload("ReadTextAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<winrt::hstring> ReadTextAsync(winrt::hstring const& absolutePath);
[Windows.Foundation.Metadata.Overload("ReadTextAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<string> ReadTextAsync(string absolutePath);
function readTextAsync(absolutePath)
Public Shared Function ReadTextAsync (absolutePath As String) As IAsyncOperation(Of String)

Parameter

absolutePath
String

Platform::String

winrt::hstring

Der Pfad der zu lesenden Datei.

Gibt zurück

IAsyncOperation<String>

IAsyncOperation<Platform::String>

IAsyncOperation<winrt::hstring>

Wenn diese Methode erfolgreich abgeschlossen wurde, gibt sie den Inhalt der Datei als Textzeichenfolge zurück.

Attribute

Beispiele

In diesem Beispiel wird gezeigt, wie Sie readTextAsync(absolutePath) verwenden, um Text aus der Datei im Pfad absoluteFilePath in wie folgt zu lesen:

Windows.Storage.PathIO.readTextAsync(absoluteFilePath).then(function (contents) {
    // Add code to process the text read from the file
});

Sie können dann oder done verwenden, um eine Funktion zum Erfassen und Verarbeiten des aus der Datei gelesenen Texts zu deklarieren. Nach Abschluss der readTextAsync-Methode wird der Text als Zeichenfolgenobjekt (contents im Beispiel) an diese Funktion übergeben.

Weitere Informationen

Gilt für:

ReadTextAsync(String, UnicodeEncoding)

Liest den Inhalt der Datei am angegebenen Pfad oder URI (Uniform Resource Identifier) unter Verwendung der angegebenen Zeichencodierung und gibt Text zurück.

public:
 static IAsyncOperation<Platform::String ^> ^ ReadTextAsync(Platform::String ^ absolutePath, UnicodeEncoding encoding);
/// [Windows.Foundation.Metadata.Overload("ReadTextWithEncodingAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncOperation<winrt::hstring> ReadTextAsync(winrt::hstring const& absolutePath, UnicodeEncoding const& encoding);
[Windows.Foundation.Metadata.Overload("ReadTextWithEncodingAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<string> ReadTextAsync(string absolutePath, UnicodeEncoding encoding);
function readTextAsync(absolutePath, encoding)
Public Shared Function ReadTextAsync (absolutePath As String, encoding As UnicodeEncoding) As IAsyncOperation(Of String)

Parameter

absolutePath
String

Platform::String

winrt::hstring

Der Pfad der zu lesenden Datei.

encoding
UnicodeEncoding

Die Zeichencodierung der Datei.

Gibt zurück

IAsyncOperation<String>

IAsyncOperation<Platform::String>

IAsyncOperation<winrt::hstring>

Wenn diese Methode erfolgreich abgeschlossen wurde, gibt sie den Inhalt der Datei als Textzeichenfolge zurück.

Attribute

Weitere Informationen

Gilt für: