ParserFindEntityBodyOffsetFromArray Method |
Given a byte array, determines the Headers length
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static bool FindEntityBodyOffsetFromArray(
byte[] arrData,
out int iHeadersLen,
out int iEntityBodyOffset,
out HTTPHeaderParseWarnings outWarnings
)
Public Shared Function FindEntityBodyOffsetFromArray (
arrData As Byte(),
<OutAttribute> ByRef iHeadersLen As Integer,
<OutAttribute> ByRef iEntityBodyOffset As Integer,
<OutAttribute> ByRef outWarnings As HTTPHeaderParseWarnings
) As Boolean
public:
static bool FindEntityBodyOffsetFromArray(
array<unsigned char>^ arrData,
[OutAttribute] int% iHeadersLen,
[OutAttribute] int% iEntityBodyOffset,
[OutAttribute] HTTPHeaderParseWarnings% outWarnings
)
Parameters
- arrData
- Type: SystemByte
Input array of data - iHeadersLen
- Type: SystemInt32
Returns the calculated length of the headers. - iEntityBodyOffset
- Type: SystemInt32
Returns the calculated start of the response body. - outWarnings
- Type: FiddlerHTTPHeaderParseWarnings
Any HTTPHeaderParseWarnings discovered during parsing.
Return Value
Type:
BooleanTrue, if the parsing was successful.
See Also