PathIO.ReadLinesAsync Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Surcharges
ReadLinesAsync(String) |
Lit le contenu du fichier au niveau du chemin d’accès ou de l’URI (Uniform Resource Identifier) spécifié et retourne des lignes de texte. |
ReadLinesAsync(String, UnicodeEncoding) |
Lit le contenu du fichier au niveau du chemin d’accès ou de l’URI (Uniform Resource Identifier) spécifié à l’aide de l’encodage de caractères spécifié et retourne des lignes de texte. |
ReadLinesAsync(String)
Lit le contenu du fichier au niveau du chemin d’accès ou de l’URI (Uniform Resource Identifier) spécifié et retourne des lignes de texte.
public:
static IAsyncOperation<IVector<Platform::String ^> ^> ^ ReadLinesAsync(Platform::String ^ absolutePath);
/// [Windows.Foundation.Metadata.Overload("ReadLinesAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<IVector<winrt::hstring>> ReadLinesAsync(winrt::hstring const& absolutePath);
[Windows.Foundation.Metadata.Overload("ReadLinesAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<IList<string>> ReadLinesAsync(string absolutePath);
function readLinesAsync(absolutePath)
Public Shared Function ReadLinesAsync (absolutePath As String) As IAsyncOperation(Of IList(Of String))
Paramètres
- absolutePath
-
String
Platform::String
winrt::hstring
Chemin du fichier à lire.
Retours
Une fois cette méthode terminée, elle retourne le contenu du fichier sous la forme d’une liste (type IVector) de lignes de texte. Chaque ligne de texte de la liste est représentée par un objet String .
- Attributs
Voir aussi
S’applique à
ReadLinesAsync(String, UnicodeEncoding)
Lit le contenu du fichier au niveau du chemin d’accès ou de l’URI (Uniform Resource Identifier) spécifié à l’aide de l’encodage de caractères spécifié et retourne des lignes de texte.
public:
static IAsyncOperation<IVector<Platform::String ^> ^> ^ ReadLinesAsync(Platform::String ^ absolutePath, UnicodeEncoding encoding);
/// [Windows.Foundation.Metadata.Overload("ReadLinesWithEncodingAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<IVector<winrt::hstring>> ReadLinesAsync(winrt::hstring const& absolutePath, UnicodeEncoding const& encoding);
[Windows.Foundation.Metadata.Overload("ReadLinesWithEncodingAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<IList<string>> ReadLinesAsync(string absolutePath, UnicodeEncoding encoding);
function readLinesAsync(absolutePath, encoding)
Public Shared Function ReadLinesAsync (absolutePath As String, encoding As UnicodeEncoding) As IAsyncOperation(Of IList(Of String))
Paramètres
- absolutePath
-
String
Platform::String
winrt::hstring
Chemin du fichier à lire.
- encoding
- UnicodeEncoding
Encodage de caractères du fichier.
Retours
Une fois cette méthode terminée, elle retourne le contenu du fichier sous la forme d’une liste (type IVector) de lignes de texte. Chaque ligne de texte de la liste est représentée par un objet String .
- Attributs