You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/libraries/Common/src/System/IO/Compression/ZLibNative.cs
+44-15Lines changed: 44 additions & 15 deletions
Original file line number
Diff line number
Diff line change
@@ -40,41 +40,70 @@ public enum ErrorCode : int
40
40
/// <summary>
41
41
/// <p>ZLib can accept any integer value between 0 and 9 (inclusive) as a valid compression level parameter:
42
42
/// 1 gives best speed, 9 gives best compression, 0 gives no compression at all (the input data is simply copied a block at a time).
43
-
/// <code>ZLibDefaultCompression</code> = -1 requests a default compromise between speed and compression
43
+
/// <code>CompressionLevel.DefaultCompression</code> = -1 requests a default compromise between speed and compression
44
44
/// (currently equivalent to level 6).</p>
45
45
///
46
46
/// <p><strong>How to choose a compression level:</strong></p>
47
47
///
48
-
/// <p>The names <code>ZLibNoCompression</code>, <code>ZLibBestSpeed</code>, <code>ZLibDefaultCompression</code>, <code>ZLibBestCompression</code> are taken over from
49
-
/// the corresponding ZLib definitions, which map to our public ZLibNoCompression, Fastest, Optimal, and SmallestSize respectively.</p>
48
+
/// <p>The names <code>NoCompression</code>, <code>BestSpeed</code>, <code>DefaultCompression</code>, <code>BestCompression</code> are taken over from
49
+
/// the corresponding ZLib definitions, which map to our public NoCompression, Fastest, Optimal, and SmallestSize respectively.</p>
0 commit comments