CachingBackend.GetItemAsyncCore Method |
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.
Namespace: PostSharp.Patterns.Caching.Implementation
Assembly: PostSharp.Patterns.Caching (in PostSharp.Patterns.Caching.dll) Version: 6.6.14.0 (6.6.14.0)
C#
protected virtual Task<CacheValue> GetItemAsyncCore( string key, bool includeDependencies, CancellationToken cancellationToken )
Parameters
- key
- Type: System.String
The cache item. - includeDependencies
- Type: System.Boolean
true if the Dependencies properties of the resulting CacheValue should be populated, otherwise false. - cancellationToken
- Type: System.Threading.CancellationToken
A CancellationToken.
Return Value
Type: Task<CacheValue>A Task evaluating to a CacheValue, or evaluating to null if there is no item in cache of the given key.