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. Should Cache Files be cleared? |
System. 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.
|
ClearCookies
True if the user wants cookies to be cleared
Declaration
public bool ClearCookies { get; set; }
Property Value
System.
|