CachingBackend.SetItemAsyncCore Method |
Asynchronously sets a cache item. 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.
The default implementation is to call the synchronous SetItemCore(String, CacheItem) method.
Namespace: PostSharp.Patterns.Caching.Implementation
Assembly: PostSharp.Patterns.Caching (in PostSharp.Patterns.Caching.dll) Version: 2023.0.3.0 (2023.0.3.0)
C#
protected virtual Task SetItemAsyncCore( string key, CacheItem item, CancellationToken cancellationToken )
Parameters
- key
- Type: System.String
The key of the cache item. - item
- Type: PostSharp.Patterns.Caching.Implementation.CacheItem
The cache item. - cancellationToken
- Type: System.Threading.CancellationToken
A CancellationToken.
Return Value
Type: TaskA Task.