An interface for the Brotli compression algorithm. Use Compression.Get("brotli") instead (it's a global instance).
|
override string[] | GetNames () |
| The names of the compressor. More...
|
|
override byte[] | Decompress (Stream source, byte[] target, int offset, ref int output_size) |
| Decompresses 'output_size' original bytes from source into target. Essentially target should be at least 'output_size' in length. More...
|
|
byte[] | Decompress (Stream source) |
| When an algorithm supports it, this figures out the right amount of bytes to decompress. More...
|
|
byte[] | Decompress (Stream source, int byteCount) |
| When an algorithm supports it, this figures out the right amount of bytes to decompress. More...
|
|
void | Decompress (Stream source, byte[] target) |
| When an algorithm supports it, this figures out the right amount of bytes to decompress. More...
|
|
void | Decompress (Stream source, byte[] target, int offset, int size) |
| When an algorithm supports it, this figures out the right amount of bytes to decompress. More...
|
|
override byte [] PowerUI.Compression.BrotliCompressor.Decompress |
( |
Stream |
source, |
|
|
byte[] |
target, |
|
|
int |
offset, |
|
|
ref int |
output_size |
|
) |
| |
|
inlinevirtual |
Decompresses 'output_size' original bytes from source into target. Essentially target should be at least 'output_size' in length.
Reimplemented from PowerUI.Compression.Compressor.
override string [] PowerUI.Compression.BrotliCompressor.GetNames |
( |
) | |
|
|
inlinevirtual |