System::Net::Sockets::NetworkStream::Read 方法

NetworkStream::Read(const ArrayPtr<uint8_t>&, int32_t, int32_t) method

从流中读取指定数量的字节并将其写入指定的字节数组。

int32_t System::Net::Sockets::NetworkStream::Read(const ArrayPtr<uint8_t> &buffer, int32_t offset, int32_t size) override
参数类型描述
bufferconst ArrayPtr<uint8_t>&用于写入读取字节的字节数组。
offsetint32_t指定数组中的字节偏移量。
sizeint32_t要读取的字节数。

ReturnValue

读取的字节数。

另见

NetworkStream::Read(const System::Details::ArrayView<uint8_t>&, int32_t, int32_t) method

从流中读取指定数量的字节并将其写入指定的字节数组。

int32_t System::Net::Sockets::NetworkStream::Read(const System::Details::ArrayView<uint8_t> &buffer, int32_t offset, int32_t size) override
参数类型描述
bufferconst System::Details::ArrayView<uint8_t>&用于写入读取字节的字节数组视图
offsetint32_tbuffer 中开始写入的 0 基位置
sizeint32_t要读取的字节数

ReturnValue

读取的字节数

另见