Declaration Syntax
Public Shared Sub CopyBinaryStreams( _
ByVal reader As BinaryReader, _
ByVal writer As BinaryWriter, _
ByVal blockSize As Integer _
)
public static void CopyBinaryStreams(
BinaryReader reader,
BinaryWriter writer,
int blockSize
);
public: static void CopyBinaryStreams(
BinaryReader reader,
BinaryWriter writer,
int blockSize
);
public static function CopyBinaryStreams(
reader : BinaryReader,
writer : BinaryWriter,
blockSize : int
);
Parameters
- reader
- The System.IO.BinaryReader from which contents will be read.
- writer
- The System.IO.BinaryWriter to which contents will be written.
- blockSize
- The number of characters to copy at one time.
Remarks
A larger block size will mean less calls to the underlying reader and writer but it will use more memory.Requirements
Namespace: Eas.WebCrawler.Common.IOAssembly: Eas.WebCrawler.Common (eas.webcrawler.common.dll)