CacheStoreProvider.Remove Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.