UtilitiesutilDecodeHTTPBody Method (HTTPHeaders, Byte, Boolean) |
Remove all encodings from arrBody, based on those specified in the supplied HTTP headers;
DOES NOT MODIFY HEADERS. DOES NOT HANDLE UNSUPPORTED ENCODINGS WELL.
Throws on errors.
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static void utilDecodeHTTPBody(
HTTPHeaders oHeaders,
ref byte[] arrBody,
bool bSilent
)
Public Shared Sub utilDecodeHTTPBody (
oHeaders As HTTPHeaders,
ByRef arrBody As Byte(),
bSilent As Boolean
)
public:
static void utilDecodeHTTPBody(
HTTPHeaders^ oHeaders,
array<unsigned char>^% arrBody,
bool bSilent
)
Parameters
- oHeaders
- Type: FiddlerHTTPHeaders
*Readonly* headers specifying what encodings are applied - arrBody
- Type: SystemByte
In/Out array to be modified - bSilent
- Type: SystemBoolean
FALSE to show dialog boxes on errors, TRUE to remain silent
See Also