mscorlib(4.0.0.0) API with additions
CompressionLevel.cs
1 namespace System.IO.Compression
2 {
4  [global::__DynamicallyInvokable]
5  public enum CompressionLevel
6  {
8  [global::__DynamicallyInvokable]
9  Optimal,
11  [global::__DynamicallyInvokable]
12  Fastest,
14  [global::__DynamicallyInvokable]
16  }
17 }
No compression should be performed on the file.
CompressionLevel
Specifies values that indicate whether a compression operation emphasizes speed or compression size.
The compression operation should complete as quickly as possible, even if the resulting file is not o...
The compression operation should be optimally compressed, even if the operation takes a longer time t...