Exemple #1
0
        public static void ClearUserCache(string userName)
        {
            var cacheKeyStartStrings = PermissionsManager.GetCackeKeyStartStringList(userName);

            foreach (string cacheKeyStartString in cacheKeyStartStrings)
            {
                CacheUtils.RemoveByStartString(cacheKeyStartString);
                //CacheUtils.Remove(cacheKey);
            }
        }