PathIO.AppendTextAsync Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
AppendTextAsync(String, String) |
Acrescenta o texto ao arquivo no caminho especificado ou no URI (Uniform Resource Identifier). |
AppendTextAsync(String, String, UnicodeEncoding) |
Acrescenta o texto ao arquivo no caminho especificado ou no URI (Uniform Resource Identifier) usando a codificação de caractere especificada. |
AppendTextAsync(String, String)
Acrescenta o texto ao arquivo no caminho especificado ou no URI (Uniform Resource Identifier).
public:
static IAsyncAction ^ AppendTextAsync(Platform::String ^ absolutePath, Platform::String ^ contents);
/// [Windows.Foundation.Metadata.Overload("AppendTextAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncAction AppendTextAsync(winrt::hstring const& absolutePath, winrt::hstring const& contents);
[Windows.Foundation.Metadata.Overload("AppendTextAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction AppendTextAsync(string absolutePath, string contents);
function appendTextAsync(absolutePath, contents)
Public Shared Function AppendTextAsync (absolutePath As String, contents As String) As IAsyncAction
Parâmetros
- absolutePath
-
String
Platform::String
winrt::hstring
O caminho do 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(String, String, UnicodeEncoding)
Acrescenta o texto ao arquivo no caminho especificado ou no URI (Uniform Resource Identifier) usando a codificação de caractere especificada.
public:
static IAsyncAction ^ AppendTextAsync(Platform::String ^ absolutePath, Platform::String ^ contents, UnicodeEncoding encoding);
/// [Windows.Foundation.Metadata.Overload("AppendTextWithEncodingAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncAction AppendTextAsync(winrt::hstring const& absolutePath, winrt::hstring const& contents, UnicodeEncoding const& encoding);
[Windows.Foundation.Metadata.Overload("AppendTextWithEncodingAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncAction AppendTextAsync(string absolutePath, string contents, UnicodeEncoding encoding);
function appendTextAsync(absolutePath, contents, encoding)
Public Shared Function AppendTextAsync (absolutePath As String, contents As String, encoding As UnicodeEncoding) As IAsyncAction
Parâmetros
- absolutePath
-
String
Platform::String
winrt::hstring
O caminho do 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