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