Class
CacheClearEventArgs

These EventArgs are constructed when FiddlerApplication.OnClearCache is called.

Definition

Namespace:Fiddler

Assembly:FiddlerCore.dll

Syntax:

cs-api-definition
public class CacheClearEventArgs : CancelEventArgs

Inheritance: objectEventArgsCancelEventArgsCacheClearEventArgs

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

Constructors

CacheClearEventArgs(bool, bool)

Constructs the Event Args

Declaration

cs-api-definition
public CacheClearEventArgs(bool bClearFiles, bool bClearCookies)

Parameters

bClearFiles

bool

Should Cache Files be cleared?

bClearCookies

bool

Should Cookies be cleared?

Properties

ClearCacheFiles

True if the user wants cache files to be cleared

Declaration

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

Property Value

bool

ClearCookies

True if the user wants cookies to be cleared

Declaration

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

Property Value

bool