PathIO.AppendTextAsync Метод
Определение
Важно!
Некоторые сведения относятся к предварительной версии продукта, в которую до выпуска могут быть внесены существенные изменения. Майкрософт не предоставляет никаких гарантий, явных или подразумеваемых, относительно приведенных здесь сведений.
Перегрузки
AppendTextAsync(String, String) |
Добавляет текст в файл по указанному пути или универсальному коду ресурса (URI). |
AppendTextAsync(String, String, UnicodeEncoding) |
Добавляет текст в файл по указанному пути или универсальному коду ресурса (URI), используя указанную кодировку символов. |
AppendTextAsync(String, String)
Добавляет текст в файл по указанному пути или универсальному коду ресурса (URI).
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
Параметры
- absolutePath
-
String
Platform::String
winrt::hstring
Путь к файлу, к которому добавляется текст.
- contents
-
String
Platform::String
winrt::hstring
Добавляемый текст.
Возвращаемое значение
После завершения этого метода объект или значение не возвращаются.
- Атрибуты
См. также раздел
Применяется к
AppendTextAsync(String, String, UnicodeEncoding)
Добавляет текст в файл по указанному пути или универсальному коду ресурса (URI), используя указанную кодировку символов.
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
Параметры
- absolutePath
-
String
Platform::String
winrt::hstring
Путь к файлу, к которому добавляется текст.
- contents
-
String
Platform::String
winrt::hstring
Добавляемый текст.
- encoding
- UnicodeEncoding
Кодировка символов файла.
Возвращаемое значение
После завершения этого метода объект или значение не возвращаются.
- Атрибуты