Write()

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

Writes the specified subrange of bytes from the specified byte array to the stream.

virtual void System::IO::Stream::Write(const ArrayPtr<uint8_t> &buffer, int32_t offset, int32_t count)=0

Arguments

ParameterTypeDescription
bufferconst ArrayPtr<uint8_t>&The array containing the bytes to write
offsetint32_tA 0-based index of the element in buffer at which the subrange to write begins
countint32_tThe number of elements in the subrange to write

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

Writes the specified subrange of bytes from the specified byte array to the stream.

virtual void System::IO::Stream::Write(const System::Details::ArrayView<uint8_t> &buffer, int32_t offset, int32_t count)

Arguments

ParameterTypeDescription
bufferconst System::Details::ArrayView<uint8_t>&The array view containing the bytes to write
offsetint32_tA 0-based index of the element in buffer at which the subrange to write begins
countint32_tThe number of elements in the subrange to write

Stream::Write(const System::Details::StackArray<uint8_t, N>&, int32_t, int32_t) method

Writes the specified subrange of bytes from the specified byte array to the stream.

template<std::size_t> void System::IO::Stream::Write(const System::Details::StackArray<uint8_t, N> &buffer, int32_t offset, int32_t count)

Template parameters

ParameterDescription
NThe size of the stack array

Arguments

ParameterTypeDescription
bufferconst System::Details::StackArray<uint8_t, N>&The stack array containing the bytes to write
offsetint32_tA 0-based index of the element in buffer at which the subrange to write begins
countint32_tThe number of elements in the subrange to write

See Also