MemoryStream.CopyTo(Stream, Int32) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
使用指定的缓冲区大小,从当前内存流中读取字节并将其写入到另一流中。
public:
override void CopyTo(System::IO::Stream ^ destination, int bufferSize);
public override void CopyTo (System.IO.Stream destination, int bufferSize);
override this.CopyTo : System.IO.Stream * int -> unit
Public Overrides Sub CopyTo (destination As Stream, bufferSize As Integer)
参数
- destination
- Stream
当前内存流的内容将复制到的流。
- bufferSize
- Int32
缓冲区的大小。 此值必须大于零。 默认大小为 81920。
例外
destination
为 null
。
bufferSize
不是正数。
基础内存流或 destination
流已关闭。