CacheEntryRemovedCallback 委托

定义

定义对某个方法的引用,在从缓存中移除某个缓存项后将调用该方法。

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)

参数

arguments
CacheEntryRemovedArguments

有关已从缓存中移除的缓存项的信息。

注解

委托以 CacheEntryRemovedCallback 对象的形式 CacheEntryRemovedArguments 传递有关已删除的缓存项的信息。

扩展方法

GetMethodInfo(Delegate)

获取指示指定委托表示的方法的对象。

适用于