MemoryStream.CopyTo(Stream, Int32) 方法

定义

使用指定的缓冲区大小,从当前内存流中读取字节并将其写入到另一流中。

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。

例外

destinationnull

bufferSize 不是正数。

基础内存流或 destination 流已关闭。

基础内存流不可读取。

- 或 -

destination 流不可写入。

适用于