Compression.Brotli (3) is an enumeration that specifies the type of compression. It is a member of the Compression.Type and specifies that the compressed data is in the ‘Brotli’ format.
Examples
// Compresses a binary file in the Brotli format.
= Binary.Compress( #binary( {1, 22, 3, 44} ), Compression.Brotli )
= Binary.Compress( #binary( {1, 22, 3, 44} ), 3 )
// Decompresses a binary file in the Brotli format.
= Binary.Decompress( #binary( {1, 22, 3, 44} ), Compression.Brotli )
= Binary.Decompress( #binary( {1, 22, 3, 44} ), 3 )
Related enumerations
Other related enumerations are:
- Compression.Deflate
- Compression.GZip
- Compression.LZ4
- Compression.None
- Compression.Snappy
- Compression.Zstandard
Applies to
Here’s a list of functions that work with Compression.Type:
2023-2024 © BI Gorilla. All rights are reserved. Information from Microsoft docs is property of Microsoft Corp. | Privacy Policy