PostSharpAPI ReferencePost­Sharp.​Patterns.​Caching.​ImplementationCaching­BackendGet­Item­Core
Open sandboxFocus

CachingBackend.GetItemCore Method

GetItemCore(String, Boolean)

Gets a cache item given its key. This protected method is part of the implementation API and is meant to be overridden in user code, not invoked. Arguments are already validated by the consumer API.

Declaration
protected abstract CacheValue GetItemCore(string key, bool includeDependencies)
Parameters
Type Name Description
System.String key

The cache item.

Boolean includeDependencies

true if the Dependencies properties of the resulting CacheValue should be populated, otherwise false.

Returns
Type Description
CacheValue

A CacheValue, or null if there is no item in cache of the given key.