BufferedStream.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 不支持写入。

在调用 CopyTo(Stream) 方法前,当前流或 destination 已关闭。

出现 I/O 错误。

适用于