Session Constructor (Byte, Byte, SessionFlags) |
Create a Session object from two byte[] representing request and response. This is used when loading a Session Archive Zip.
Namespace: FiddlerAssembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax public Session(
byte[] arrRequest,
byte[] arrResponse,
SessionFlags oSF
)
Public Sub New (
arrRequest As Byte(),
arrResponse As Byte(),
oSF As SessionFlags
)
public:
Session(
array<unsigned char>^ arrRequest,
array<unsigned char>^ arrResponse,
SessionFlags oSF
)
Parameters
- arrRequest
- Type: SystemByte
The client data bytes - arrResponse
- Type: SystemByte
The server data bytes - oSF
- Type: FiddlerSessionFlags
SessionFlags for this session
See Also