GetItemAsync(string, bool, CancellationToken)
Asynchronously gets a cache item given its key.
Declaration
public Task<CacheValue> GetItemAsync(string key, bool includeDependencies = true, CancellationToken cancellationToken = default)
Parameters
Type | Name | Description |
---|---|---|
string | key | The cache item. |
bool | includeDependencies |
|
CancellationToken | cancellationToken |
Returns
Type | Description |
---|---|
Task<CacheValue> | A Task evaluating to a CacheValue, or evaluating to |