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

CachingBackend.GetItemAsyncCore Method

GetItemAsyncCore(String, Boolean, CancellationToken)

Asynchronously 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 virtual Task<CacheValue> GetItemAsyncCore(string key, bool includeDependencies, CancellationToken cancellationToken)
Parameters
Type Name Description
String key

The cache item.

Boolean includeDependencies

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

CancellationToken cancellationToken

A CancellationToken.

Returns
Type Description
Task<CacheValue>

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