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