Cache::Remove Method (String^)
.NET Framework (current version)
Removes the specified item from the application's Cache object.
Assembly: System.Web (in System.Web.dll)
Parameters
- key
-
Type:
System::String^
A String identifier for the cache item to remove.
Return Value
Type: System::Object^The item removed from the Cache. If the value in the key parameter is not found, returns null.
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.
.NET Framework
Available since 1.1
Available since 1.1
Show: