BlobBuilder.WriteBytes メソッド

定義

オーバーロード

WriteBytes(Byte[], Int32, Int32)

バイト配列内で指定されたインデックスから始まる指定バイト数をビルダーに書き込みます。

WriteBytes(Byte*, Int32)

バッファーからビルダーに指定バイト数を書き込みます。

WriteBytes(ImmutableArray<Byte>, Int32, Int32)

不変配列の指定インデックスから始まる指定バイト数をビルダーに書き込みます。

WriteBytes(ImmutableArray<Byte>)

不変バイト配列のコンテンツをビルダーに書き込みます。

WriteBytes(Byte[])

バイト配列のコンテンツをビルダーに書き込みます。

WriteBytes(Byte, Int32)

バイト値の指定発生数をビルダーに書き込みます。

WriteBytes(Byte[], Int32, Int32)

バイト配列内で指定されたインデックスから始まる指定バイト数をビルダーに書き込みます。

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)

パラメーター

buffer
Byte[]
start
Int32
byteCount
Int32

書き込むバイト数。

例外

buffernullです。

startbyteCount で指定された範囲が buffer の境界外になります。

ビルダーは書き込み不可です。別のものにリンクされています。

適用対象

WriteBytes(Byte*, Int32)

バッファーからビルダーに指定バイト数を書き込みます。

public:
 void WriteBytes(System::Byte* buffer, int byteCount);
public void WriteBytes (byte* buffer, int byteCount);
member this.WriteBytes : nativeptr<byte> * int -> unit

パラメーター

buffer
Byte*
byteCount
Int32

書き込むバイト数。

例外

buffernullです。

byteCount が負の値です。

このビルダーは書き込み不可です。別のものにリンクされています。

適用対象

WriteBytes(ImmutableArray<Byte>, Int32, Int32)

不変配列の指定インデックスから始まる指定バイト数をビルダーに書き込みます。

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)

パラメーター

start
Int32
byteCount
Int32

書き込むバイト数。

例外

buffernullです。

startbyteCount で指定された範囲が buffer の境界外になります。

ビルダーは書き込み不可です。別のものにリンクされています。

適用対象

WriteBytes(ImmutableArray<Byte>)

不変バイト配列のコンテンツをビルダーに書き込みます。

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))

パラメーター

buffer
ImmutableArray<Byte>

書き込む配列。

例外

buffernullです。

ビルダーは書き込み不可です。別のものにリンクされています。

適用対象

WriteBytes(Byte[])

バイト配列のコンテンツをビルダーに書き込みます。

public:
 void WriteBytes(cli::array <System::Byte> ^ buffer);
public void WriteBytes (byte[] buffer);
member this.WriteBytes : byte[] -> unit
Public Sub WriteBytes (buffer As Byte())

パラメーター

buffer
Byte[]

書き込むバイト配列。

例外

buffernullです。

ビルダーは書き込み不可です。別のものにリンクされています。

適用対象

WriteBytes(Byte, Int32)

バイト値の指定発生数をビルダーに書き込みます。

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)

パラメーター

value
Byte
byteCount
Int32

書き込む value の発生数。

例外

byteCount が負の値です。

このビルダーは書き込み不可です。別のものにリンクされています。

適用対象