C# Class NetWrok.HTTP.Zlib.CrcCalculatorStream

A Stream that calculates a CRC32 (a checksum) on all bytes read, or on all bytes written.

This class can be used to verify the CRC of a ZipEntry when reading from a stream, or to calculate a CRC when writing to a stream. The stream should be used to either read, or write, but not both. If you intermix reads and writes, the results are not defined.

This class is intended primarily for use internally by the DotNetZip library.

Inheritance: System.IO.Stream
Show file Open project: simonwittber/netwrok-client

Public Methods

Method Description
CrcCalculatorStream ( System stream ) : System

The constructor.

CrcCalculatorStream ( System stream, System.Int64 length ) : System

The constructor.

Flush ( ) : void

Flush the stream.

Read ( byte buffer, int offset, int count ) : int

Read from the stream

Seek ( long offset, System origin ) : long

Not implemented.

SetLength ( long value ) : void

Not implemented.

Write ( byte buffer, int offset, int count ) : void

Write to the stream.

Method Details

CrcCalculatorStream() public method

The constructor.
public CrcCalculatorStream ( System stream ) : System
stream System The underlying stream
return System

CrcCalculatorStream() public method

The constructor.
public CrcCalculatorStream ( System stream, System.Int64 length ) : System
stream System The underlying stream
length System.Int64 The length of the stream to slurp
return System

Flush() public method

Flush the stream.
public Flush ( ) : void
return void

Read() public method

Read from the stream
public Read ( byte buffer, int offset, int count ) : int
buffer byte the buffer to read
offset int the offset at which to start
count int the number of bytes to read
return int

Seek() public method

Not implemented.
public Seek ( long offset, System origin ) : long
offset long N/A
origin System N/A
return long

SetLength() public method

Not implemented.
public SetLength ( long value ) : void
value long N/A
return void

Write() public method

Write to the stream.
public Write ( byte buffer, int offset, int count ) : void
buffer byte the buffer from which to write
offset int the offset at which to start writing
count int the number of bytes to write
return void