UtilitiesdoUnchunk Method |
Removes HTTP chunked encoding from the data in writeData and returns the resulting array.
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static byte[] doUnchunk(
byte[] writeData
)
Public Shared Function doUnchunk (
writeData As Byte()
) As Byte()
public:
static array<unsigned char>^ doUnchunk(
array<unsigned char>^ writeData
)
Parameters
- writeData
- Type: SystemByte
Some chunked data
Return Value
Type:
ByteUnchunked data. Throws InvalidDataException on data format errors.
See Also