'Declaration Public MustOverride Function Remove(Of T)( _ ByVal key As System.String, _ Optional ByVal regionName As System.String _ ) As T
'Usage Dim instance As BaseCacheProvider Dim key As System.String Dim regionName As System.String Dim value As T value = instance.Remove(Of T)(key, regionName)
public abstract T Remove<T>( System.string key, System.string regionName )
public: abstract T* Remove<T>( System.string* key, System.string* regionName )
public: abstract T^ Removegeneric<typename T> ( System.String^ key, System.String^ regionName )
Parameters
- key
- A unique identifier for the cache entry.
- regionName
- Optional. A named region in the cache to which the cache entry was removed. The default value for the optional parameter is Default
Type Parameters
- T
Return Value
An object that represents the value of the removed cache entry that was specified by the key,
or null if the specified entry was not found.