FileIO.WriteTextAsync 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
WriteTextAsync(IStorageFile, String) |
Écrit du texte dans le fichier spécifié. |
WriteTextAsync(IStorageFile, String, UnicodeEncoding) |
Écrit du texte dans le fichier spécifié à l’aide de l’encodage de caractères spécifié. |
WriteTextAsync(IStorageFile, String)
Écrit du texte dans le fichier spécifié.
public:
static IAsyncAction ^ WriteTextAsync(IStorageFile ^ file, Platform::String ^ contents);
/// [Windows.Foundation.Metadata.Overload("WriteTextAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncAction WriteTextAsync(IStorageFile const& file, winrt::hstring const& contents);
[Windows.Foundation.Metadata.Overload("WriteTextAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction WriteTextAsync(IStorageFile file, string contents);
function writeTextAsync(file, contents)
Public Shared Function WriteTextAsync (file As IStorageFile, contents As String) As IAsyncAction
Paramètres
- file
- IStorageFile
Fichier dans lequel le texte est écrit.
- contents
-
String
Platform::String
winrt::hstring
Texte à écrire.
Retours
Aucun objet ou valeur n’est retourné lorsque cette méthode est terminée.
- Attributs
Remarques
Cette méthode tente de détecter automatiquement l’encodage d’un fichier en fonction de la présence de marques d’ordre d’octet. Si un encodage ne peut pas être détecté, l’encodage spécifié par l’appelant est utilisé.
Voir aussi
S’applique à
WriteTextAsync(IStorageFile, String, UnicodeEncoding)
Écrit du texte dans le fichier spécifié à l’aide de l’encodage de caractères spécifié.
public:
static IAsyncAction ^ WriteTextAsync(IStorageFile ^ file, Platform::String ^ contents, UnicodeEncoding encoding);
/// [Windows.Foundation.Metadata.Overload("WriteTextWithEncodingAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncAction WriteTextAsync(IStorageFile const& file, winrt::hstring const& contents, UnicodeEncoding const& encoding);
[Windows.Foundation.Metadata.Overload("WriteTextWithEncodingAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction WriteTextAsync(IStorageFile file, string contents, UnicodeEncoding encoding);
function writeTextAsync(file, contents, encoding)
Public Shared Function WriteTextAsync (file As IStorageFile, contents As String, encoding As UnicodeEncoding) As IAsyncAction
Paramètres
- file
- IStorageFile
Fichier dans lequel le texte est écrit.
- contents
-
String
Platform::String
winrt::hstring
Texte à écrire.
- encoding
- UnicodeEncoding
Encodage de caractères du fichier.
Retours
Aucun objet ou valeur n’est retourné lorsque cette méthode est terminée.
- Attributs