Removes an entry from the cache. 


 
            
            
            
            
            
            
            
            public abstract  Remove<>( 
   string ,
   string 
)
             
        
            
            'Declaration
 
Public Overloads MustOverride Function Remove(Of )( _
   ByVal  As String, _
   ByVal  As String _
) As 
             
        
            
            'Usage
 
Dim instance As ObjectCache
Dim key As String
Dim regionName As String
Dim value As 
 
value = instance.Remove(Of T)(key, regionName)
             
        
            
            
            
        
            
            public abstract<T> T remove(String key, Class<?> classOfT, String regionName)
            
             
        
            
            public:
abstract  Removegeneric<typename >
( 
   String^ ,
   String^ 
) 
             
        
             
        
            Parameters
- key
 
- Unique identifier of the cache item.
 - regionName
 
- Optional name of a region in cache.
 
            Type Parameters
- T
 
            Return Value
The value of the item removed from the cache if found, otherwise; null.