CachingBackend.ContainsDependencyAsyncCore Method |
Asynchronously determines whether the cache contains a given dependency. 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.5.15.0 (6.5.15.0)

C#
protected virtual Task<bool> ContainsDependencyAsyncCore( string key, CancellationToken cancellationToken )
Parameters
- key
- Type: System.String
The dependency key. - cancellationToken
- Type: System.Threading.CancellationToken
A CancellationToken.
Return Value
Type: Task<Boolean>A Task evaluating to true if the cache contains the dependency key, otherwise false.
