Data compression flags are used to modify the behavior of the data compression feature.

C# |
public enum DataCompressionFlags

Member | Description |
---|---|
BetterSize | This informs the API to use the median level compression method to compress the data. The use of BetterSize will result in slower compression times than BestSpeed, however, data may experience greater compression (i.e. resulting data might be noticeably smaller). |
BestSpeed | This informs the API to use the fastest compression method to compress the data. The use of BestSpeed will result in less compression than BetterSize (i.e. resulting data might be larger), however, data may be compressed in a noticeably shorter time. |