DataReader.LoadAsync(UInt32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从输入流加载数据。
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 读取数据。