FileIO.AppendLinesAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
AppendLinesAsync(IStorageFile, IIterable<String>) |
指定したファイルにテキスト行を追加します。 |
AppendLinesAsync(IStorageFile, IIterable<String>, UnicodeEncoding) |
指定した文字エンコードを使用して、指定したファイルにテキスト行を追加します。 |
AppendLinesAsync(IStorageFile, IIterable<String>)
指定したファイルにテキスト行を追加します。
public:
static IAsyncAction ^ AppendLinesAsync(IStorageFile ^ file, IIterable<Platform::String ^> ^ lines);
/// [Windows.Foundation.Metadata.Overload("AppendLinesAsync")]
static IAsyncAction AppendLinesAsync(IStorageFile const& file, IIterable<winrt::hstring> const& lines);
[Windows.Foundation.Metadata.Overload("AppendLinesAsync")]
public static IAsyncAction AppendLinesAsync(IStorageFile file, IEnumerable<string> lines);
function appendLinesAsync(file, lines)
Public Shared Function AppendLinesAsync (file As IStorageFile, lines As IEnumerable(Of String)) As IAsyncAction
パラメーター
- file
- IStorageFile
行が追加されるファイル。
行として追加するテキスト文字列の一覧。
戻り値
このメソッドが完了すると、オブジェクトまたは値は返されません。
- 属性
こちらもご覧ください
適用対象
AppendLinesAsync(IStorageFile, IIterable<String>, UnicodeEncoding)
指定した文字エンコードを使用して、指定したファイルにテキスト行を追加します。
public:
static IAsyncAction ^ AppendLinesAsync(IStorageFile ^ file, IIterable<Platform::String ^> ^ lines, UnicodeEncoding encoding);
/// [Windows.Foundation.Metadata.Overload("AppendLinesWithEncodingAsync")]
static IAsyncAction AppendLinesAsync(IStorageFile const& file, IIterable<winrt::hstring> const& lines, UnicodeEncoding const& encoding);
[Windows.Foundation.Metadata.Overload("AppendLinesWithEncodingAsync")]
public static IAsyncAction AppendLinesAsync(IStorageFile file, IEnumerable<string> lines, UnicodeEncoding encoding);
function appendLinesAsync(file, lines, encoding)
Public Shared Function AppendLinesAsync (file As IStorageFile, lines As IEnumerable(Of String), encoding As UnicodeEncoding) As IAsyncAction
パラメーター
- file
- IStorageFile
行が追加されるファイル。
行として追加するテキスト文字列の一覧。
- encoding
- UnicodeEncoding
ファイルの文字エンコード。
戻り値
このメソッドが完了すると、オブジェクトまたは値は返されません。
- 属性