Various compression algorithms available for direct use. You can also delete the ones you don't want. Keep in mind that zlib is used by WOFF and brotli is used by WOFF2. Try Compression.Get("zlib").Decompress(aStream,aBlockOfBytes);
Static Public Member Functions | |
static bool | Add (Type compressorType) |
Adds a compressor the global set. This is generally done automatically, but you can also add one manually if you wish. More... | |
static Compressor | Get (string name) |
Attempts to find the named at rule, returning the global instance if it's found. More... | |
Static Public Attributes | |
static Dictionary< string, Compressor > | All |
All available compression types. e.g. 'zlib' or 'brotli' are available by default. More... | |
|
inlinestatic |
Adds a compressor the global set. This is generally done automatically, but you can also add one manually if you wish.
compressorType | The type of the compressor to add. |
|
inlinestatic |
Attempts to find the named at rule, returning the global instance if it's found.
name | The rule to look for. |
|
static |
All available compression types. e.g. 'zlib' or 'brotli' are available by default.