Exemplo n.º 1
0
        public string ClearTempData(string attachguid)
        {
            string str = string.Empty;

            try
            {
                str = proxy.ClearCache(attachguid);
                return("{\"status\":\"ok\"}");
            }
            catch (Exception ex)
            {
                return("{\"status\":\"error\", \"msg\":\"" + ex.Message + "\"}");

                throw ex;
            }
        }