IStream.CopyTo(IStream, Int64, IntPtr, IntPtr) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
将指定的字节数从流中的当前搜索指针复制到其他流中的当前搜索指针。
public:
void CopyTo(System::Runtime::InteropServices::ComTypes::IStream ^ pstm, long cb, IntPtr pcbRead, IntPtr pcbWritten);
public void CopyTo (System.Runtime.InteropServices.ComTypes.IStream pstm, long cb, IntPtr pcbRead, IntPtr pcbWritten);
abstract member CopyTo : System.Runtime.InteropServices.ComTypes.IStream * int64 * nativeint * nativeint -> unit
Public Sub CopyTo (pstm As IStream, cb As Long, pcbRead As IntPtr, pcbWritten As IntPtr)
参数
- pstm
- IStream
对目标流的引用。
- cb
- Int64
要从源流复制的字节数。
- pcbRead
-
IntPtr
nativeint
成功返回时包含从源读取的实际字节数。
- pcbWritten
-
IntPtr
nativeint
成功返回时包含写入到目标的实际字节数。
注解
有关详细信息,请参阅 IStream::CopyTo 的现有文档。