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.UtilsAssembly: PDTec.IceNet.Sdk (in PDTec.IceNet.Sdk.dll) Version: 6.0.0.0 (6.0.6225.27214)
Syntaxpublic static void Copy(
Stream input,
Stream output,
byte[] buffer
)
Parameters
- input
- Type: System.IOStream
The input stream. - output
- Type: System.IOStream
The output stream. - buffer
- Type: SystemByte
The buffer used to store the intermediate content.
See Also