Unregisters the CacheItemUpdatedCallback and/or CacheItemRemovedCallback already registered for the specified list of keys.

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 void UnRegisterKeyNotificationCallback(
	string[] keys,
	CacheItemUpdatedCallback updateCallback,
	CacheItemRemovedCallback removeCallback
)
Visual Basic
Public Overridable Sub UnRegisterKeyNotificationCallback ( _
	keys As String(), _
	updateCallback As CacheItemUpdatedCallback, _
	removeCallback As CacheItemRemovedCallback _
)
Visual C++
public:
virtual void UnRegisterKeyNotificationCallback(
	array<String^>^ keys, 
	CacheItemUpdatedCallback^ updateCallback, 
	CacheItemRemovedCallback^ removeCallback
)

Parameters

keys
Type: array<System..::..String>[]()[][]
The cache key used to reference the cache item.
updateCallback
Type: Alachisoft.NCache.Web.Caching..::..CacheItemUpdatedCallback
CacheItemUpdatedCallback that is invoked when the item with the specified key is updated in the cache.
removeCallback
Type: Alachisoft.NCache.Web.Caching..::..CacheItemRemovedCallback
CacheItemRemovedCallback that is invoked when the item with the key is removed from the cache.

See Also