DataWriter.WriteBuffer Method

Definition

Overloads

WriteBuffer(IBuffer, UInt32, UInt32)

Writes the specified bytes from a buffer to the output stream.

WriteBuffer(IBuffer)

Writes the contents of the specified buffer to the output stream.

WriteBuffer(IBuffer, UInt32, UInt32)

Writes the specified bytes from a buffer to the output stream.

public:
 virtual void WriteBuffer(IBuffer ^ buffer, unsigned int start, unsigned int count) = WriteBuffer;
/// [Windows.Foundation.Metadata.Overload("WriteBufferRange")]
void WriteBuffer(IBuffer const& buffer, uint32_t const& start, uint32_t const& count);
[Windows.Foundation.Metadata.Overload("WriteBufferRange")]
public void WriteBuffer(IBuffer buffer, uint start, uint count);
function writeBuffer(buffer, start, count)
Public Sub WriteBuffer (buffer As IBuffer, start As UInteger, count As UInteger)

Parameters

buffer
IBuffer

The buffer.

start
UInt32

unsigned int

uint32_t

The starting byte.

count
UInt32

unsigned int

uint32_t

The number of bytes to write.

Implements

M:Windows.Storage.Streams.IDataWriter.WriteBuffer(Windows.Storage.Streams.IBuffer,System.UInt32,System.UInt32) M:Windows.Storage.Streams.IDataWriter.WriteBuffer(Windows.Storage.Streams.IBuffer,unsigned int,unsigned int) M:Windows.Storage.Streams.IDataWriter.WriteBuffer(Windows.Storage.Streams.IBuffer,uint32_t,uint32_t)
Attributes

See also

Applies to

WriteBuffer(IBuffer)

Writes the contents of the specified buffer to the output stream.

public:
 virtual void WriteBuffer(IBuffer ^ buffer) = WriteBuffer;
/// [Windows.Foundation.Metadata.Overload("WriteBuffer")]
void WriteBuffer(IBuffer const& buffer);
[Windows.Foundation.Metadata.Overload("WriteBuffer")]
public void WriteBuffer(IBuffer buffer);
function writeBuffer(buffer)
Public Sub WriteBuffer (buffer As IBuffer)

Parameters

buffer
IBuffer

The buffer.

Implements

Attributes

See also

Applies to