IDataWriter.WriteBuffer Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Sobrecargas
WriteBuffer(IBuffer) |
Escribe un número de bytes de un búfer en el flujo de salida. |
WriteBuffer(IBuffer, UInt32, UInt32) |
Escribe un intervalo de bytes de un búfer en el flujo de salida. |
WriteBuffer(IBuffer)
Escribe un número de bytes de un búfer en el flujo de salida.
public:
void WriteBuffer(IBuffer ^ buffer);
/// [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)
Parámetros
- buffer
- IBuffer
El búfer.
- Atributos
Consulte también
Se aplica a
WriteBuffer(IBuffer, UInt32, UInt32)
Escribe un intervalo de bytes de un búfer en el flujo de salida.
public:
void WriteBuffer(IBuffer ^ buffer, unsigned int start, unsigned int count);
/// [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)
Parámetros
- buffer
- IBuffer
El búfer.
- start
-
UInt32
unsigned int
uint32_t
Byte inicial que se va a escribir.
- count
-
UInt32
unsigned int
uint32_t
Número de bytes que se van a escribir.
- Atributos