BlobWriter.WriteBytes Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
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)
Parameters
- buffer
- Byte[]
- start
- Int32
- byteCount
- Int32
Exceptions
buffer
is null
.
Range specified by start
and byteCount
falls outside of the bounds of the buffer
.
Applies to
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
Parameters
- source
- Stream
- byteCount
- Int32
Returns
Exceptions
source
is null
.
byteCount
is negative.
Applies to
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
Parameters
- buffer
- Byte*
- byteCount
- Int32
Exceptions
buffer
is null
.
byteCount
is negative.
Applies to
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)
Parameters
- buffer
- ImmutableArray<Byte>
- start
- Int32
- byteCount
- Int32
Exceptions
buffer
is null
.
Range specified by start
and byteCount
falls outside of the bounds of the buffer
.
Applies to
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)
Parameters
- source
- BlobBuilder
Exceptions
source
is null
.
Applies to
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))
Parameters
- buffer
- ImmutableArray<Byte>
Exceptions
buffer
is null
.
Applies to
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())
Parameters
- buffer
- Byte[]
Exceptions
buffer
is null
.
Applies to
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)
Parameters
- value
- Byte
- byteCount
- Int32
Exceptions
byteCount
is negative.
Applies to
Met ons samenwerken op GitHub
De bron voor deze inhoud vindt u op GitHub, waar u ook problemen en pull-aanvragen kunt maken en controleren. Bekijk onze gids voor inzenders voor meer informatie.