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
要使用的字符编码。
返回
此方法成功完成后,它将以文本字符串的形式返回文件的内容。
- 属性