FileIO.ReadLinesAsync メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
オーバーロード
ReadLinesAsync(IStorageFile) |
指定したファイルの内容を読み取り、テキスト行を返します。 |
ReadLinesAsync(IStorageFile, UnicodeEncoding) |
指定した文字エンコードを使用して、指定したファイルの内容を読み取り、テキスト行を返します。 |
ReadLinesAsync(IStorageFile)
指定したファイルの内容を読み取り、テキスト行を返します。
public:
static IAsyncOperation<IVector<Platform::String ^> ^> ^ ReadLinesAsync(IStorageFile ^ file);
/// [Windows.Foundation.Metadata.Overload("ReadLinesAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<IVector<winrt::hstring>> ReadLinesAsync(IStorageFile const& file);
[Windows.Foundation.Metadata.Overload("ReadLinesAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<IList<string>> ReadLinesAsync(IStorageFile file);
function readLinesAsync(file)
Public Shared Function ReadLinesAsync (file As IStorageFile) As IAsyncOperation(Of IList(Of String))
パラメーター
- file
- IStorageFile
読み取るファイル。
戻り値
このメソッドが正常に完了すると、ファイルの内容がテキスト行のリスト (型 IVector) として返されます。 リスト内のテキストの各行は、 String オブジェクトによって表されます。
- 属性
注釈
このメソッドは、指定したファイルの文字エンコードを使用します。 別のエンコードを指定する場合は、代わりに ReadLinesAsync(IStorageFile, UnicodeEncoding) を 呼び出します。
こちらもご覧ください
適用対象
ReadLinesAsync(IStorageFile, UnicodeEncoding)
指定した文字エンコードを使用して、指定したファイルの内容を読み取り、テキスト行を返します。
public:
static IAsyncOperation<IVector<Platform::String ^> ^> ^ ReadLinesAsync(IStorageFile ^ file, UnicodeEncoding encoding);
/// [Windows.Foundation.Metadata.Overload("ReadLinesWithEncodingAsync")]
/// [Windows.Foundation.Metadata.RemoteAsync]
static IAsyncOperation<IVector<winrt::hstring>> ReadLinesAsync(IStorageFile const& file, UnicodeEncoding const& encoding);
[Windows.Foundation.Metadata.Overload("ReadLinesWithEncodingAsync")]
[Windows.Foundation.Metadata.RemoteAsync]
public static IAsyncOperation<IList<string>> ReadLinesAsync(IStorageFile file, UnicodeEncoding encoding);
function readLinesAsync(file, encoding)
Public Shared Function ReadLinesAsync (file As IStorageFile, encoding As UnicodeEncoding) As IAsyncOperation(Of IList(Of String))
パラメーター
- file
- IStorageFile
読み取るファイル。
- encoding
- UnicodeEncoding
使用する文字エンコーディング。
戻り値
このメソッドが正常に完了すると、ファイルの内容がテキスト行のリスト (型 IVector) として返されます。 リスト内のテキストの各行は、 String オブジェクトによって表されます。
- 属性