DbDataReader.GetBytes(Int32, Int64, Byte[], Int32, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
在派生类中重写时,从指定列中指定索引处开始读取指定数量的字节,并从缓冲区的指定位置开始将其写入缓冲区中。
public:
abstract long GetBytes(int ordinal, long dataOffset, cli::array <System::Byte> ^ buffer, int bufferOffset, int length);
public abstract long GetBytes (int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length);
public abstract long GetBytes (int ordinal, long dataOffset, byte[]? buffer, int bufferOffset, int length);
abstract member GetBytes : int * int64 * byte[] * int * int -> int64
Public MustOverride Function GetBytes (ordinal As Integer, dataOffset As Long, buffer As Byte(), bufferOffset As Integer, length As Integer) As Long
参数
- ordinal
- Int32
从零开始的列序号。
- dataOffset
- Int64
行中作为读取操作起始位置的索引。
- buffer
- Byte[]
要将数据复制到的缓冲区。
- bufferOffset
- Int32
要将数据复制到的位置的缓冲区索引。
- length
- Int32
最多读取的字节数。
返回
读取的实际字节数。
实现
例外
列索引超出范围。
指定的强制转换无效。