Thanks for answering. Since SysCache2 is built on top of the System.Web.Caching.Cache class, that class has the following member function.
public Object Add (
string key,
Object value,
CacheDependency dependencies,
DateTime absoluteExpiration,
TimeSpan slidingExpiration,
CacheItemPriority priority,
CacheItemRemovedCallback onRemoveCallback
)
I just want to be able to set the onRemoveCallback parameter using SysCache2. Is that possible? Any feedback would be greatly appreciated.
Thanking you in advance
Francis
|