GetItemAsyncCore(string, bool, 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 ValueTask<CacheItem?> GetItemAsyncCore(string key, bool includeDependencies, CancellationToken cancellationToken)Parameters
| Type | Name | Description |
|---|---|---|
| string | key | The cache item. |
| bool | includeDependencies |
|
| CancellationToken | cancellationToken |
Returns
| Type | Description |
|---|---|
| ValueTask<CacheItem> | A Task evaluating to a CacheItem, or evaluating to |