Session Constructor (HTTPRequestHeaders, Byte) |
Initialize a new session from a given request headers and body request builder data. Note: No Session ID is assigned here.
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public Session(
HTTPRequestHeaders oRequestHeaders,
byte[] arrRequestBody
)
Public Sub New (
oRequestHeaders As HTTPRequestHeaders,
arrRequestBody As Byte()
)
public:
Session(
HTTPRequestHeaders^ oRequestHeaders,
array<unsigned char>^ arrRequestBody
)
Parameters
- oRequestHeaders
- Type: FiddlerHTTPRequestHeaders
NB: If you're copying an existing request, use oRequestHeaders.Clone() - arrRequestBody
- Type: SystemByte
The bytes of the request's body
See Also