コード例 #1
0
        public Boolean validateMail(String mail, out string status, out string code)
        {
            bool resp = true;

            status = string.Empty;
            code   = string.Empty;
            try
            {
                DaAnimusRest da = new DaAnimusRest();
                resp = da.validateMail(mail, out status, out code);
            }
            catch (Exception ex)
            {
                resp = false;
            }
            return(resp);
        }