예제 #1
0
        public void ProcessRequest(HttpContext context)
        {
            var cachekey = context.Request["cachekey"];

            if (string.IsNullOrEmpty(cachekey))
            {
                AppAdapter.RemoveAllCache();
            }
            else
            {
                CacheSync.Rebuild(cachekey);
            }
        }
예제 #2
0
 public ServiceResult <object> RemoveAllCache()
 {
     AppAdapter.RemoveAllCache();
     return(new ServiceResult <object>(null));
 }