BlobWriter.WriteBytes 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
WriteBytes(Byte[], Int32, Int32)
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
public:
void WriteBytes(cli::array <System::Byte> ^ buffer, int start, int byteCount);
public void WriteBytes (byte[] buffer, int start, int byteCount);
member this.WriteBytes : byte[] * int * int -> unit
Public Sub WriteBytes (buffer As Byte(), start As Integer, byteCount As Integer)
Parámetros
- buffer
- Byte[]
- start
- Int32
- byteCount
- Int32
Excepciones
buffer
es null
.
Intervalo especificado por start
y byteCount
fuera de los límites de buffer
.
Se aplica a
WriteBytes(Stream, Int32)
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
public:
int WriteBytes(System::IO::Stream ^ source, int byteCount);
public int WriteBytes (System.IO.Stream source, int byteCount);
member this.WriteBytes : System.IO.Stream * int -> int
Public Function WriteBytes (source As Stream, byteCount As Integer) As Integer
Parámetros
- source
- Stream
- byteCount
- Int32
Devoluciones
Excepciones
source
es null
.
byteCount
es negativo.
Se aplica a
WriteBytes(Byte*, Int32)
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
public:
void WriteBytes(System::Byte* buffer, int byteCount);
public void WriteBytes (byte* buffer, int byteCount);
member this.WriteBytes : nativeptr<byte> * int -> unit
Parámetros
- buffer
- Byte*
- byteCount
- Int32
Excepciones
buffer
es null
.
byteCount
es negativo.
Se aplica a
WriteBytes(ImmutableArray<Byte>, Int32, Int32)
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
public:
void WriteBytes(System::Collections::Immutable::ImmutableArray<System::Byte> buffer, int start, int byteCount);
public void WriteBytes (System.Collections.Immutable.ImmutableArray<byte> buffer, int start, int byteCount);
member this.WriteBytes : System.Collections.Immutable.ImmutableArray<byte> * int * int -> unit
Public Sub WriteBytes (buffer As ImmutableArray(Of Byte), start As Integer, byteCount As Integer)
Parámetros
- buffer
- ImmutableArray<Byte>
- start
- Int32
- byteCount
- Int32
Excepciones
buffer
es null
.
Intervalo especificado por start
y byteCount
fuera de los límites de buffer
.
Se aplica a
WriteBytes(BlobBuilder)
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
public:
void WriteBytes(System::Reflection::Metadata::BlobBuilder ^ source);
public void WriteBytes (System.Reflection.Metadata.BlobBuilder source);
member this.WriteBytes : System.Reflection.Metadata.BlobBuilder -> unit
Public Sub WriteBytes (source As BlobBuilder)
Parámetros
- source
- BlobBuilder
Excepciones
source
es null
.
Se aplica a
WriteBytes(ImmutableArray<Byte>)
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
public:
void WriteBytes(System::Collections::Immutable::ImmutableArray<System::Byte> buffer);
public void WriteBytes (System.Collections.Immutable.ImmutableArray<byte> buffer);
member this.WriteBytes : System.Collections.Immutable.ImmutableArray<byte> -> unit
Public Sub WriteBytes (buffer As ImmutableArray(Of Byte))
Parámetros
- buffer
- ImmutableArray<Byte>
Excepciones
buffer
es null
.
Se aplica a
WriteBytes(Byte[])
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
public:
void WriteBytes(cli::array <System::Byte> ^ buffer);
public void WriteBytes (byte[] buffer);
member this.WriteBytes : byte[] -> unit
Public Sub WriteBytes (buffer As Byte())
Parámetros
- buffer
- Byte[]
Excepciones
buffer
es null
.
Se aplica a
WriteBytes(Byte, Int32)
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
- Source:
- BlobWriter.cs
public:
void WriteBytes(System::Byte value, int byteCount);
public void WriteBytes (byte value, int byteCount);
member this.WriteBytes : byte * int -> unit
Public Sub WriteBytes (value As Byte, byteCount As Integer)
Parámetros
- value
- Byte
- byteCount
- Int32
Excepciones
byteCount
es negativo.