MonobjcMonobjc Documented Class Library
NSCache..::..CacheWillEvictObjectEventHandler Delegate
NamespacesMonobjc.FoundationNSCacheNSCache..::..CacheWillEvictObjectEventHandler

Called when an object is about to be evicted or removed from the cache.

Original signature is '- (void)cache:(NSCache *)cache willEvictObject:(id)obj'

Available in Mac OS X v10.6 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate void CacheWillEvictObjectEventHandler(
	NSCache cache,
	Id obj
)
Public Delegate Sub CacheWillEvictObjectEventHandler ( _
	cache As NSCache, _
	obj As Id _
)
public delegate void CacheWillEvictObjectEventHandler(
	NSCache^ cache, 
	Id^ obj
)
Parameters
cache (NSCache)
The cache with which the object of interest is associated.
obj (Id)
The object of interest in the cache.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)