Value of the specified cache entry. 


 
            
            
            
            
            
            
            
            public abstract  Get<>( 
   string ,
   string 
)
             
        
            
            'Declaration
 
Public Overloads MustOverride Function Get(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.Get(Of T)(key, regionName)
             
        
            
            
            
        
            
            public abstract<T> T get(String key, Class<?> classOfT, String regionName)
            
             
        
            
            public:
abstract  Getgeneric<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 specified entry if found, otherwise; null.