BlobReader.ReadBytes 方法

定义

重载

ReadBytes(Int32, Byte[], Int32)

读取从当前位置开始的字节,并将它们写入从指定偏移量开始的指定缓冲区。

ReadBytes(Int32)

读取从当前位置开始的字节。

ReadBytes(Int32, Byte[], Int32)

Source:
BlobReader.cs
Source:
BlobReader.cs
Source:
BlobReader.cs

读取从当前位置开始的字节,并将它们写入从指定偏移量开始的指定缓冲区。

public:
 void ReadBytes(int byteCount, cli::array <System::Byte> ^ buffer, int bufferOffset);
public void ReadBytes (int byteCount, byte[] buffer, int bufferOffset);
member this.ReadBytes : int * byte[] * int -> unit
Public Sub ReadBytes (byteCount As Integer, buffer As Byte(), bufferOffset As Integer)

参数

byteCount
Int32

要读取的字节数。

buffer
Byte[]

将向其中写入读取字节的目标缓冲区。

bufferOffset
Int32

将向其中写入读取字节的目标缓冲区中的偏移量。

例外

byteCount 个字节不可用。

适用于

ReadBytes(Int32)

Source:
BlobReader.cs
Source:
BlobReader.cs
Source:
BlobReader.cs

读取从当前位置开始的字节。

public:
 cli::array <System::Byte> ^ ReadBytes(int byteCount);
public byte[] ReadBytes (int byteCount);
member this.ReadBytes : int -> byte[]
Public Function ReadBytes (byteCount As Integer) As Byte()

参数

byteCount
Int32

要读取的字节数。

返回

Byte[]

字节数组。

例外

byteCount 个字节不可用。

适用于