CacheStoreProvider.Remove Method

Definition

Removes the specified item from the cache.

Overloads

Remove(String)

Removes the item from the cache.

Remove(String, CacheItemRemovedReason)

Removes the specified item from the cache if it exists.

Remove(String)

Removes the item from the cache.

public:
 abstract System::Object ^ Remove(System::String ^ key);
public abstract object Remove (string key);
abstract member Remove : string -> obj
Public MustOverride Function Remove (key As String) As Object

Parameters

key
String

The identifier for the cache item.

Returns

The item if it exits; otherwise null.

Applies to

Remove(String, CacheItemRemovedReason)

Removes the specified item from the cache if it exists.

public:
 abstract System::Object ^ Remove(System::String ^ key, System::Web::Caching::CacheItemRemovedReason reason);
public abstract object Remove (string key, System.Web.Caching.CacheItemRemovedReason reason);
abstract member Remove : string * System.Web.Caching.CacheItemRemovedReason -> obj
Public MustOverride Function Remove (key As String, reason As CacheItemRemovedReason) As Object

Parameters

key
String

The identifier for the cache item to remove.

reason
CacheItemRemovedReason

The reason the item was removed.

Returns

The removed item.

Applies to