EntityDataReader.GetBytes(Int32, Int64, Byte[], Int32, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从指定列读取一个字节流(从 dataIndex
指示的位置开始),读到缓冲区中(从 bufferIndex
指示的位置开始)。
public:
override long GetBytes(int ordinal, long dataOffset, cli::array <System::Byte> ^ buffer, int bufferOffset, int length);
public override long GetBytes (int ordinal, long dataOffset, byte[] buffer, int bufferOffset, int length);
override this.GetBytes : int * int64 * byte[] * int * int -> int64
Public Overrides 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
最多读取的字符数。
返回
读取的实际字节数。