Occurs after an item has been updated in the Cache.

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

Remarks

You can use this event to perform tasks when an item is updated in the Cache.

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 CacheItemUpdatedCallback.

See Also