CacheEntryRemovedCallback Delegate

Definition

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.

Applies to