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 clear the ICache.
ICache cache = CacheManager.GetCache("demoCache");
cache.Clear();