Occurs after the cache has been stopped.

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 virtual event CacheStoppedCallback CacheStopped
Visual Basic
Public Overridable Event CacheStopped As CacheStoppedCallback
Visual C++
public:
virtual  event CacheStoppedCallback^ CacheStopped {
	void add (CacheStoppedCallback^ value);
	void remove (CacheStoppedCallback^ value);
}

Remarks

You can use this event to perform the tasks when a the cache has been stopped.

This callback is invoked when the cache has either been stopped intentionally or connection with the server has been lost due to some reason so that you can connect to another server.

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

See Also