CacheManager Add Method (ObjectCache, String, Object, CacheItemPolicy, String)Nemiro.Data.dll
Adds an entry to 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 Add(
	ObjectCache cache,
	string key,
	Object value,
	CacheItemPolicy policy,
	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 add.
value
Type: System Object
The data for the cache entry.
policy
Type: System.Runtime.Caching CacheItemPolicy
An object that contains eviction details for the cache entry. This object provides more options for eviction than a simple absolute expiration.
regionName (Optional)
Type: System String
A named region in the cache to which a cache entry can be added.

Return Value

Type: Object
If a matching cache entry already exists, a cache entry; otherwise, null (Nothing).
See Also