예제 #1
0
 public bool ClearMemoryCatch(string key)
 {
     if (!key.IsNotWhiteSpace())
     {
         throw new MyException("key 不允许为空");
     }
     return(_tokenService.ClearMemaryCache(key));
 }