DataReader.LoadAsync(UInt32) 方法

定义

从输入流加载数据。

public:
 virtual DataReaderLoadOperation ^ LoadAsync(unsigned int count) = LoadAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
DataReaderLoadOperation LoadAsync(uint32_t const& count);
[Windows.Foundation.Metadata.RemoteAsync]
public DataReaderLoadOperation LoadAsync(uint count);
function loadAsync(count)
Public Function LoadAsync (count As UInteger) As DataReaderLoadOperation

参数

count
UInt32

unsigned int

uint32_t

要加载到中间缓冲区的字节计数。

返回

异步加载数据请求。

实现

M:Windows.Storage.Streams.IDataReader.LoadAsync(System.UInt32) M:Windows.Storage.Streams.IDataReader.LoadAsync(unsigned int) M:Windows.Storage.Streams.IDataReader.LoadAsync(uint32_t)
属性

示例

使用此方法的示例应用程序包括 序列化和反序列化数据示例3D 打印示例蓝牙 RFCOMM 聊天示例压缩示例

注解

读取操作可以获取更多或更少的字节,具体取决于 InputStreamOptions 属性的设置方式。

需要调用此方法以加载数据,然后才能从 DataReader 读取数据。

适用于

另请参阅