UtilitiesZLibExpand Method |
Decompress an array compressed using an Zlib DEFLATE stream. Not a HTTP Encoding; it's used internally in the PNG format.
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static byte[] ZLibExpand(
byte[] compressedData
)
Public Shared Function ZLibExpand (
compressedData As Byte()
) As Byte()
public:
static array<unsigned char>^ ZLibExpand(
array<unsigned char>^ compressedData
)
Parameters
- compressedData
- Type: SystemByte
The array to expand
Return Value
Type:
Bytebyte[] of decompressed data
See Also