Implements a codec that does not perform any compression. This codec simply returns the bytes presented to it "as-is".
More...
|
| NullCodec () |
| Initializes a new instance of the NullCodec class. More...
|
|
override byte[] | Compress (byte[] uncompressedData) |
| Compress data using implemented codec
|
|
override void | Compress (MemoryStream inputStream, MemoryStream outputStream) |
| Compress data using implemented codec
|
|
override byte[] | Decompress (byte[] compressedData) |
| Decompress data using implemented codec
|
|
override string | GetName () |
| Name of this codec type
|
|
override bool | Equals (object other) |
| Codecs must implement an equals() method
|
|
override int | GetHashCode () |
| Codecs must implement a HashCode() method that is consistent with Equals
|
|
override string | ToString () |
| Returns name of codec More...
|
|
Implements a codec that does not perform any compression. This codec simply returns the bytes presented to it "as-is".