public interface ITokenCache<TKey, TValue>
Public Interface ITokenCache(Of TKey, TValue)generic<typename TKey, typename TValue>
public interface class ITokenCachetype ITokenCache<'TKey, 'TValue> = interface end| Clear | Clears the cache and resets its state, removing all entries. |
| TryAddOrUpdate | Attempts to add or update the cache value associated with the specified key. |
| TryGet(FuncTKey, TValue, Boolean, TValue) | Attempts to retrieve the cache value that matches the specified condition. |
| TryGet(TKey, TValue) | Attempts to retrieve the cache value associated with the specified key. |
| TryRemove(FuncTKey, TValue, Boolean, TValue) | Attempts to remove the cache value that matches the specified condition. |
| TryRemove(TKey, TValue) | Attempts to remove the cache value associated with the specified key. |
| TryUpdate | Attempts to update the cache value that matches the specified condition. |