JsonCompress
A static class for serializing, compressing, and decompressing objects using JSON serialization and Brotli compression.
Compress
Serializes and compresses an object using JSON serialization and Brotli compression.
Example:
Decompress
Decompresses the given byte array and deserializes it into type T.
Example:
DecompressList
Decompresses the given byte array and deserializes it into a List of type T.
Example:
EncryptCompress
Serializes, encrypts, and compresses an object using JSON serialization and Brotli compression.
Example:
DecryptDecompress
Decrypts and decompresses the given byte array and deserializes it into type T.
Returns:
Type T deserialized from the decompressed byte array.
Example:
DecryptDecompressList
Decrypts and decompresses the given byte array and deserializes it into a List of type T.
Example:
Last updated