QuickSaveSettings
Defines the settings for reading or writing
C#var settings = new QuickSaveSettings();
SecurityMode
AES is a secure encryption method, but this comes at the cost of speed
Base64 is not a secure encryption method, it simply makes the file not human readable
The security mode used to encrypt / decrypt files - can be one of SecurityMode.Aes, SecurityMode.Base64 or SecurityMode.None
C#quickSaveSettings.SecurityMode
Password
If SecurityMode.Aes is selected as the security mode, specify a password to use as the encryption key
C#quickSaveSettings.Password
Compression
The compression mode used on the file - can be either CompressionMode.Gzip or CompressionMode.None
C#quickSaveSettings.CompressionMode