public void DeleteAgentCache(AgentCacheRequest request)
        {
            var agentProfileKeyFormatted = string.Format(CacheKeys.AGENTPROFILEKEY, request.AgentId, request.AgentSequence);

            _cacheManager.Remove(agentProfileKeyFormatted, CacheRegion.Global);

            var agentPasswordKeyFormatted = string.Format(CacheKeys.AGENTPASSWORDKEY, request.AgentId, request.AgentSequence);

            _cacheManager.Remove(agentPasswordKeyFormatted, CacheRegion.Global);
        }
示例#2
0
 public void DeleteAgentCache(AgentCacheRequest request)
 {
     _cacheIntegration.DeleteAgentCache(request);
 }