UtilitiesDeflaterExpandInternal Method |
UnDeflate function which shows no UI and will throw on error
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static byte[] DeflaterExpandInternal(
bool bUseXceed,
byte[] compressedData
)
Public Shared Function DeflaterExpandInternal (
bUseXceed As Boolean,
compressedData As Byte()
) As Byte()
public:
static array<unsigned char>^ DeflaterExpandInternal(
bool bUseXceed,
array<unsigned char>^ compressedData
)
Parameters
- bUseXceed
- Type: SystemBoolean
TRUE if you want to use Xceed to decompress; false if you want to use System.IO - compressedData
- Type: SystemByte
byte[] to decompress
Return Value
Type:
ByteA decompressed byte array, or byte[0]. Throws on errors.
See Also