CacheEntryRemovedCallback Delegate
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Defines a reference to a method that is called after a cache entry is removed from the cache.
public delegate void CacheEntryRemovedCallback(CacheEntryRemovedArguments ^ arguments);
public delegate void CacheEntryRemovedCallback(CacheEntryRemovedArguments arguments);
type CacheEntryRemovedCallback = delegate of CacheEntryRemovedArguments -> unit
Public Delegate Sub CacheEntryRemovedCallback(arguments As CacheEntryRemovedArguments)
Parameters
- arguments
- CacheEntryRemovedArguments
The information about the cache entry that was removed from the cache.
Remarks
The CacheEntryRemovedCallback delegate passes information about the removed cache entry in the form of a CacheEntryRemovedArguments object.
Extension Methods
GetMethodInfo(Delegate) |
Gets an object that represents the method represented by the specified delegate. |