public void Set(string key, AcrToken token) { _cache[key] = token; }
public bool TryGetToken(string key, out AcrToken value) { return(_cache.TryGetValue(key, out value)); }