Method Clear
Clear()
Removes all elements from the ICache.
Declaration
void Clear()
Remarks
In most of the cases this method's implementation is close to O(1).
Examples
Example demonstrates how to check for containment of an item in the ICache.
ICache cache = CacheManager.GetCache("myCache");
cache.Clear();