Example #1
0
        public ActionResultVM GetAppInfo(string AppId, string AppKey)
        {
            var vm = new ActionResultVM();

            try
            {
                vm = FileServerService.GetAppInfo(AppId, AppKey);
            }
            catch (Exception ex)
            {
                vm.Set(ex);
                Core.ConsoleTo.Log(ex);
            }

            return(vm);
        }