Occurs after the Cache is cleared.

Namespace: Alachisoft.NCache.Web.Caching
Assembly: Alachisoft.NCache.Web (in Alachisoft.NCache.Web.dll) Version: 4.1.0.0 (4.1.0.0)

Syntax

C#
public override event CacheClearedCallback CacheCleared
Visual Basic
Public Overrides Event CacheCleared As CacheClearedCallback
Visual C++
public:
virtual  event CacheClearedCallback^ CacheCleared {
	void add (CacheClearedCallback^ value);
	void remove (CacheClearedCallback^ value);
}

Remarks

You can use this event to perform tasks when the Cache is cleared.

Since this callback is invoked every time an item is removed from the Cache, doing a lot of processing inside the callback might have an impact on the performance of the cache and cluster. It is therefore advisable to do minimal processing inside the handler.

For more information on how to use this callback see the documentation for CacheClearedCallback.

See Also