HTTPResponseHeadersToByteArray Method |
Returns a byte array representing the HTTP headers.
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public byte[] ToByteArray(
bool prependStatusLine,
bool appendEmptyLine
)
Public Function ToByteArray (
prependStatusLine As Boolean,
appendEmptyLine As Boolean
) As Byte()
public:
array<unsigned char>^ ToByteArray(
bool prependStatusLine,
bool appendEmptyLine
)
Parameters
- prependStatusLine
- Type: SystemBoolean
TRUE if the response status line should be included - appendEmptyLine
- Type: SystemBoolean
TRUE if there should be a trailing \r\n byte sequence included
Return Value
Type:
ByteByte[] containing the headers
See Also