Пример #1
0
        public string ChkInstall(string sUnid)
        {
            Installer.wslogger.Ws_Logger ws = new Installer.wslogger.Ws_Logger();
            // ws.Timeout = 20000;

            try
            {
                string sRes = "";
                if (sEmail.Contains(@"cookconsulting"))
                {
                    sRes = "go";
                }
                else
                {
                    sRes = ws.ChkInstall(sUnid);
                }

                return(sRes);
            }
            catch (Exception ex)
            {
                throw ex;
            }
            finally
            {
                ws.Dispose();
            }
        }