MetalamaAPI documentationPatterns APIMetalama.​Patterns.​Caching.​BackendsCaching­BackendGet­Item­Async
Open sandboxFocus

CachingBackend.GetItemAsync Method

GetItemAsync(string, bool, CancellationToken)

Asynchronously gets a cache item given its key.

Declaration
public ValueTask<CacheItem?> GetItemAsync(string key, bool includeDependencies = true, CancellationToken cancellationToken = default)
Parameters
Type Name Description
string key

The cache item.

bool includeDependencies

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

CancellationToken cancellationToken

A CancellationToken.

Returns
Type Description
ValueTask<CacheItem>

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