DecompressionMethods Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Represents the file compression and decompression encoding format to be used to compress the data received in response to an HttpWebRequest.
This enumeration supports a bitwise combination of its member values.
public enum class DecompressionMethods
[System.Flags]
public enum DecompressionMethods
[<System.Flags>]
type DecompressionMethods =
Public Enum DecompressionMethods
- Inheritance
- Attributes
Fields
Name | Value | Description |
---|---|---|
All | -1 | Use all compression-decompression algorithms. |
None | 0 | Do not use compression. |
GZip | 1 | Use the gZip compression-decompression algorithm. |
Deflate | 2 | Use the deflate compression-decompression algorithm. |
Brotli | 4 | Use the Brotli compression-decompression algorithm. |