Click or drag to resize
SessionStates Enumeration
State of the current session

Namespace: Fiddler
Assembly: FiddlerCore4 (in FiddlerCore4.dll) Version: 4.6.2.0
Syntax
public enum SessionStates
Members
  Member nameValueDescription
Created0 Object created but nothing's happening yet
ReadingRequest1 Thread is reading the HTTP Request
AutoTamperRequestBefore2 AutoTamperRequest pass 1 (IAutoTamper, OnBeforeRequest script method)
HandTamperRequest3 User can tamper using Fiddler Inspectors
AutoTamperRequestAfter4 AutoTamperRequest pass 2 (Only used by IAutoTamper)
SendingRequest5 Thread is sending the Request to the server
ReadingResponse6 Thread is reading the HTTP Response
AutoTamperResponseBefore7 AutoTamperResponse pass 1 (Only used by IAutoTamper)
HandTamperResponse8 User can tamper using Fiddler Inspectors
AutoTamperResponseAfter9 AutoTamperResponse pass 2 (Only used by IAutoTamper)
SendingResponse10 Sending response to client application
Done11 Session complete
Aborted12 Session was aborted (client didn't want response, fatal error, etc)
See Also