예제 #1
0
        private void CheckLicense()
        {
            try
            {
                //_isTrial = false;
                //TO Be commented OUT when we release the APP.
                //_isTrial = _licenseInfo.IsTrial();
                //_isTrial = true;
                //gIsPaidVersion = false;
                _isTrial = false;

                //After checking Licence, call into CLOUD.
                AllUsersConnection cloud = new AllUsersConnection();
                cloud.UpdateUserInformation(IsTrial);
            }
            catch (Exception)
            {
                _isTrial = false;
            }
        }