Class
RawReadEventArgs

When the FiddlerApplication.OnReadResponseBuffer event fires, the raw bytes are available via this object.

Definition

Namespace:Fiddler

Assembly:FiddlerCore.dll

Syntax:

cs-api-definition
public class RawReadEventArgs : EventArgs

Inheritance: objectEventArgsRawReadEventArgs

Inherited Members EventArgs.Emptyobject.GetType()object.MemberwiseClone()object.ToString()object.Equals(object)object.Equals(object, object)object.ReferenceEquals(object, object)object.GetHashCode()

Properties

AbortReading

Set to TRUE to request that upload or download process be aborted as soon as convenient

Declaration

cs-api-definition
public bool AbortReading { get; set; }

Property Value

bool

arrDataBuffer

Byte buffer returned from read. Note: Always of fixed size, check iCountOfBytes to see which bytes were set

Declaration

cs-api-definition
public byte[] arrDataBuffer { get; }

Property Value

byte[]

iCountOfBytes

Count of latest read from Socket. If less than 1, response was ended.

Declaration

cs-api-definition
public int iCountOfBytes { get; }

Property Value

int

sessionOwner

Session for which this responseRead is occurring

Declaration

cs-api-definition
public Session sessionOwner { get; }

Property Value

Session