BlobWriter.WriteBytes Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
WriteBytes(Byte[], Int32, Int32)
- Origine:
- BlobWriter.cs
- Origine:
- BlobWriter.cs
- Origine:
- 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)
Parametri
- buffer
- Byte[]
- start
- Int32
- byteCount
- Int32
Eccezioni
buffer
è null
.
L'intervallo specificato da start
e byteCount
non rientra nei limiti del buffer
.
Si applica a
WriteBytes(Stream, Int32)
- Origine:
- BlobWriter.cs
- Origine:
- BlobWriter.cs
- Origine:
- 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
Parametri
- source
- Stream
- byteCount
- Int32
Restituisce
Eccezioni
source
è null
.
byteCount
è negativo.
Si applica a
WriteBytes(Byte*, Int32)
- Origine:
- BlobWriter.cs
- Origine:
- BlobWriter.cs
- Origine:
- BlobWriter.cs
public:
void WriteBytes(System::Byte* buffer, int byteCount);
public void WriteBytes (byte* buffer, int byteCount);
member this.WriteBytes : nativeptr<byte> * int -> unit
Parametri
- buffer
- Byte*
- byteCount
- Int32
Eccezioni
buffer
è null
.
byteCount
è negativo.
Si applica a
WriteBytes(ImmutableArray<Byte>, Int32, Int32)
- Origine:
- BlobWriter.cs
- Origine:
- BlobWriter.cs
- Origine:
- 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)
Parametri
- buffer
- ImmutableArray<Byte>
- start
- Int32
- byteCount
- Int32
Eccezioni
buffer
è null
.
L'intervallo specificato da start
e byteCount
non rientra nei limiti del buffer
.
Si applica a
WriteBytes(BlobBuilder)
- Origine:
- BlobWriter.cs
- Origine:
- BlobWriter.cs
- Origine:
- 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)
Parametri
- source
- BlobBuilder
Eccezioni
source
è null
.
Si applica a
WriteBytes(ImmutableArray<Byte>)
- Origine:
- BlobWriter.cs
- Origine:
- BlobWriter.cs
- Origine:
- 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))
Parametri
- buffer
- ImmutableArray<Byte>
Eccezioni
buffer
è null
.
Si applica a
WriteBytes(Byte[])
- Origine:
- BlobWriter.cs
- Origine:
- BlobWriter.cs
- Origine:
- 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())
Parametri
- buffer
- Byte[]
Eccezioni
buffer
è null
.
Si applica a
WriteBytes(Byte, Int32)
- Origine:
- BlobWriter.cs
- Origine:
- BlobWriter.cs
- Origine:
- 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)
Parametri
- value
- Byte
- byteCount
- Int32
Eccezioni
byteCount
è negativo.