Compartilhar via


FileIO.AppendTextAsync Método

Definição

Sobrecargas

AppendTextAsync(IStorageFile, String)

Acrescenta o texto ao arquivo especificado.

AppendTextAsync(IStorageFile, String, UnicodeEncoding)

Acrescenta o texto ao arquivo especificado usando a codificação de caracteres especificada.

AppendTextAsync(IStorageFile, String)

Acrescenta o texto ao arquivo especificado.

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

Parâmetros

file
IStorageFile

O arquivo ao qual o texto é acrescentado.

contents
String

Platform::String

winrt::hstring

O texto a ser acrescentado.

Retornos

Nenhum objeto ou valor é retornado quando esse método é concluído.

Atributos

Confira também

Aplica-se a

AppendTextAsync(IStorageFile, String, UnicodeEncoding)

Acrescenta o texto ao arquivo especificado usando a codificação de caracteres especificada.

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

Parâmetros

file
IStorageFile

O arquivo ao qual o texto é acrescentado.

contents
String

Platform::String

winrt::hstring

O texto a ser acrescentado.

encoding
UnicodeEncoding

A codificação de caracteres do arquivo.

Retornos

Nenhum objeto ou valor é retornado quando esse método é concluído.

Atributos

Confira também

Aplica-se a