ParserTakeResponse Method |
Given a MemoryStream, attempts to parse a HTTP Response starting at the current position
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public static bool TakeResponse(
MemoryStream strmServer,
string sRequestMethod,
out HTTPResponseHeaders headersResponse,
out byte[] arrResponseBody
)
Public Shared Function TakeResponse (
strmServer As MemoryStream,
sRequestMethod As String,
<OutAttribute> ByRef headersResponse As HTTPResponseHeaders,
<OutAttribute> ByRef arrResponseBody As Byte()
) As Boolean
public:
static bool TakeResponse(
MemoryStream^ strmServer,
String^ sRequestMethod,
[OutAttribute] HTTPResponseHeaders^% headersResponse,
[OutAttribute] array<unsigned char>^% arrResponseBody
)
Parameters
- strmServer
- Type: System.IOMemoryStream
- sRequestMethod
- Type: SystemString
- headersResponse
- Type: FiddlerHTTPResponseHeaders
- arrResponseBody
- Type: SystemByte
Return Value
Type:
BooleanTRUE if a response could be parsed, FALSE otherwise
See Also