Class RawReadEventArgs
When the FiddlerApplication.OnReadResponseBuffer event fires, the raw bytes are available via this object.
Inheritance
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public class RawReadEventArgs : EventArgs
Properties
AbortReading
Set to TRUE to request that upload or download process be aborted as soon as convenient
Declaration
public bool AbortReading { get; set; }
Property Value
System.Boolean
|
arrDataBuffer
Byte buffer returned from read. Note: Always of fixed size, check iCountOfBytes to see which bytes were set
Declaration
public byte[] arrDataBuffer { get; }
Property Value
System.Byte[]
|
iCountOfBytes
Count of latest read from Socket. If less than 1, response was ended.
Declaration
public int iCountOfBytes { get; }
Property Value
System.Int32
|
sessionOwner
Session for which this responseRead is occurring
Declaration
public Session sessionOwner { get; }
Property Value
Session
|