Cache.Remove Method
.NET Framework 3.0
Removes the specified item from the application's Cache object.
Namespace: System.Web.Caching
Assembly: System.Web (in system.web.dll)
Cache Members
System.Web.Caching Namespace
Assembly: System.Web (in system.web.dll)
public Object Remove ( String key )
public function Remove ( key : String ) : Object
Not applicable.
Parameters
- key
A String identifier for the cache item to remove.
Return Value
The item removed from the Cache. If the value in the key parameter is not found, returns a null reference (Nothing in Visual Basic).The following example creates a RemoveItemFromCache method. When this method is called, it uses the Item property to check whether the cache contains an object that is associated with a Key1 key value. If it does, the Remove method is called to remove the object.
Reference
Cache ClassCache Members
System.Web.Caching Namespace
Other Resources
Caching Application DataCommunity Additions
ADD
Show: