System::Net::Sockets::NetworkStream::BeginRead 方法

NetworkStream::BeginRead method

发起异步读取操作。

System::SharedPtr<IAsyncResult> System::Net::Sockets::NetworkStream::BeginRead(System::ArrayPtr<uint8_t> buffer, int32_t offset, int32_t size, AsyncCallback callback, System::SharedPtr<Object> state) override
参数类型描述
bufferSystem::ArrayPtr<uint8_t>用于写入读取字节的字节数组。
offsetint32_t指定数组中的字节偏移量。
sizeint32_t要读取的字节数。
回调AsyncCallback操作完成时调用的回调函数。
stateSystem::SharedPtr<Object>用户提供的数据,用于唯一标识每个异步读取操作。

ReturnValue

表示已启动的异步读取操作的 IAsyncResult 对象。

另见