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 Function Remove (
	key As String
) As Object

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.

Public Sub RemoveItemFromCache(sender As Object, e As EventArgs)
    If (Not IsNothing(Cache("Key1"))) Then
      Cache.Remove("Key1")
    End If
End Sub

.NET Framework
Available since 1.1
Return to top
Show: