Cache::Remove Method (String^)

 

Removes the specified item from the application's Cache object.

Namespace:   System.Web.Caching
Assembly:  System.Web (in System.Web.dll)

public:
Object^ Remove(
	String^ key
)

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.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: