System::Net::Sockets::NetworkStream::Write 方法

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

将指定字节数组中的指定子范围字节写入流。

void System::Net::Sockets::NetworkStream::Write(const ArrayPtr<uint8_t> &buffer, int32_t offset, int32_t size) override
参数类型描述
bufferconst ArrayPtr<uint8_t>&包含要写入字节的数组。
offsetint32_t指定数组中的字节偏移量。
sizeint32_t要写入的子范围中元素的数量。

另见

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

将指定字节数组中的指定子范围字节写入流。

void System::Net::Sockets::NetworkStream::Write(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要写入的子范围中元素的数量

另见