NET Caching Library Help
GetKeys Method (BaseCacheProvider)




KellermanSoftware.NetCachingLibrary.CacheProviders Namespace > BaseCacheProvider Class : GetKeys Method
Optional. A named region in the cache to get the keys. The default value for the optional parameter is Default
Get a list of the Keys associated with the region.
Syntax
'Declaration
 
Public MustOverride Function GetKeys( _
   Optional ByVal regionName As System.String _
) As System.Collections.Generic.IEnumerable(Of String)
'Usage
 
Dim instance As BaseCacheProvider
Dim regionName As System.String
Dim value As System.Collections.Generic.IEnumerable(Of String)
 
value = instance.GetKeys(regionName)
public abstract System.Collections.Generic.IEnumerable<string> GetKeys( 
   System.string regionName
)
public: abstract System.Collections.Generic.IEnumerable<string*>* GetKeys( 
   System.string* regionName
) 
public:
abstract System.Collections.Generic.IEnumerable<String^>^ GetKeys( 
   System.String^ regionName
) 

Parameters

regionName
Optional. A named region in the cache to get the keys. The default value for the optional parameter is Default
Requirements

Target Platforms: Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2

See Also

Reference

BaseCacheProvider Class
BaseCacheProvider Members