CacheManager Get Method Nemiro.Data.dll
Returns an entry from the cache.

Namespace: Nemiro.Data.Caching
Assembly: Nemiro.Data (in Nemiro.Data.dll) Version: 2.11.4.126 (2.11.4.126)
Syntax

public static Object Get(
	ObjectCache cache,
	string key,
	string regionName = null
)

Parameters

cache
Type: System.Runtime.Caching ObjectCache
Object to access the cache.
key
Type: System String
A unique identifier for the cache entry to get.
regionName (Optional)
Type: System String
A named region in the cache to which a cache entry was added.

Return Value

Type: Object
A reference to the cache entry that is identified by key, if the entry exists; otherwise, null (Nothing).
See Also