Copies the content of one stream into another stream. Define a suitable
buffer to control the maximum content size to be transferred in a single
read/write step.
Namespace:
PDTec.IceNet.Sdk.Utils
Assembly:
PDTec.IceNet.Sdk (in PDTec.IceNet.Sdk.dll) Version: 7.2.0.0 (7.2.7583.15464)
Syntax public static void Copy(
Stream input,
Stream output,
byte[] buffer
)
Parameters
- input
- Type: System.IO.Stream
The input stream. - output
- Type: System.IO.Stream
The output stream. - buffer
- Type:System.Byte[]
The buffer used to store the intermediate content.
See Also