Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
Cache Class
Cache Methods
 Remove Method
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework Class Library
Cache..::.Remove Method

Updated: November 2007

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

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

Visual Basic (Declaration)
Public Function Remove ( _
    key As String _
) As Object
Visual Basic (Usage)
Dim instance As Cache
Dim key As String
Dim returnValue As Object

returnValue = instance.Remove(key)
C#
public Object Remove(
    string key
)
Visual C++
public:
Object^ Remove(
    String^ key
)
J#
public Object Remove(
    String key
)
JScript
public function Remove(
    key : String
) : 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 nullNothingnullptra 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.

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

C#
public void RemoveItemFromCache(Object sender, EventArgs e) {
    if(Cache["Key1"] != null)
      Cache.Remove("Key1");
}

Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0, 1.1, 1.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker