Class CacheClearEventArgs
These EventArgs are constructed when FiddlerApplication.OnClearCache is called.
Inheritance
System.Object
CacheClearEventArgs
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public class CacheClearEventArgs : CancelEventArgs
Constructors
CacheClearEventArgs(Boolean, Boolean)
Constructs the Event Args
Declaration
public CacheClearEventArgs(bool bClearFiles, bool bClearCookies)
Parameters
System.Boolean
bClearFiles
Should Cache Files be cleared? |
System.Boolean
bClearCookies
Should Cookies be cleared? |
Properties
ClearCacheFiles
True if the user wants cache files to be cleared
Declaration
public bool ClearCacheFiles { get; set; }
Property Value
System.Boolean
|
ClearCookies
True if the user wants cookies to be cleared
Declaration
public bool ClearCookies { get; set; }
Property Value
System.Boolean
|