Condividi tramite


FileIO.AppendTextAsync Metodo

Definizione

Overload

AppendTextAsync(IStorageFile, String)

Aggiunge testo al file specificato.

AppendTextAsync(IStorageFile, String, UnicodeEncoding)

Aggiunge testo al file specificato usando la codifica di caratteri specificata.

AppendTextAsync(IStorageFile, String)

Aggiunge testo al file specificato.

public:
 static IAsyncAction ^ AppendTextAsync(IStorageFile ^ file, Platform::String ^ contents);
/// [Windows.Foundation.Metadata.Overload("AppendTextAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncAction AppendTextAsync(IStorageFile const& file, winrt::hstring const& contents);
[Windows.Foundation.Metadata.Overload("AppendTextAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction AppendTextAsync(IStorageFile file, string contents);
function appendTextAsync(file, contents)
Public Shared Function AppendTextAsync (file As IStorageFile, contents As String) As IAsyncAction

Parametri

file
IStorageFile

File a cui viene aggiunto il testo.

contents
String

Platform::String

winrt::hstring

Testo da aggiungere.

Restituisce

Nessun oggetto o valore viene restituito al completamento di questo metodo.

Attributi

Vedi anche

Si applica a

AppendTextAsync(IStorageFile, String, UnicodeEncoding)

Aggiunge testo al file specificato usando la codifica di caratteri specificata.

public:
 static IAsyncAction ^ AppendTextAsync(IStorageFile ^ file, Platform::String ^ contents, UnicodeEncoding encoding);
/// [Windows.Foundation.Metadata.Overload("AppendTextWithEncodingAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
 static IAsyncAction AppendTextAsync(IStorageFile const& file, winrt::hstring const& contents, UnicodeEncoding const& encoding);
[Windows.Foundation.Metadata.Overload("AppendTextWithEncodingAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction AppendTextAsync(IStorageFile file, string contents, UnicodeEncoding encoding);
function appendTextAsync(file, contents, encoding)
Public Shared Function AppendTextAsync (file As IStorageFile, contents As String, encoding As UnicodeEncoding) As IAsyncAction

Parametri

file
IStorageFile

File a cui viene aggiunto il testo.

contents
String

Platform::String

winrt::hstring

Testo da aggiungere.

encoding
UnicodeEncoding

Codifica dei caratteri del file.

Restituisce

Nessun oggetto o valore viene restituito al completamento di questo metodo.

Attributi

Vedi anche

Si applica a