UCOMIStream.Read(Byte[], Int32, IntPtr) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定数目的字节从流对象读入到以当前搜索指针开始的内存。
public:
void Read(cli::array <System::Byte> ^ pv, int cb, IntPtr pcbRead);
public void Read (byte[] pv, int cb, IntPtr pcbRead);
abstract member Read : byte[] * int * nativeint -> unit
Public Sub Read (pv As Byte(), cb As Integer, pcbRead As IntPtr)
参数
- pv
- Byte[]
成功返回时包含从流中读取的数据。
- cb
- Int32
要从流对象读取的字节数。
- pcbRead
-
IntPtr
nativeint
指向 ULONG
变量的指针,该变量接收从流对象中读取的实际字节数。
注解
有关详细信息,请参阅 MSDN 库中的现有文档 ISequentialStream::Read
。