SqlFileStream.Read(Byte[], Int32, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从当前流读取字节序列,并将流中的位置向前移动读取的字节数。
public:
override int Read(cli::array <System::Byte> ^ buffer, int offset, int count);
public override int Read (byte[] buffer, int offset, int count);
override this.Read : byte[] * int * int -> int
Public Overrides Function Read (buffer As Byte(), offset As Integer, count As Integer) As Integer
参数
- buffer
- Byte[]
字节数组。 此方法返回时,该缓冲区包含指定的字节数组,该数组的偏移量和(偏移量 + 计数 - 1)之间的值由从当前源中读取的字节替换。
- offset
- Int32
缓冲区中从零开始的字节偏移量,从此处开始存储从当前流中读取的数据。
- count
- Int32
要从当前流中最多读取的字节数。
返回
读入缓冲区中的总字节数。 如果很多字节当前不可用,则总字节数可能小于请求的字节数;如果已到达流结尾,则为零 (0)。
例外
对象不支持数据读取。
注解
CanRead使用 属性确定当前实例是否支持写入。