struct CompressionLevel
in global :: System . IO . Compression
Specifies values that indicate whether a compression operation emphasizes speed or compression size.
public static CompressionLevel Fastest
The compression operation should complete as quickly as possible, even if the resulting file is not optimally compressed.
public static CompressionLevel NoCompression
No compression should be performed on the file.
public static CompressionLevel Optimal
The compression operation should be optimally compressed, even if the operation takes a longer time to complete.
public int value__
😔 No documentation found.
public static CompressionLevel SmallestSize
😔 No documentation found.