ComponentFactory.Krypton.Ribbon.LicenseInstallForm.InstallLicenseKey C# (CSharp) Method

InstallLicenseKey() protected method

Install the license key entered by the user
protected InstallLicenseKey ( string key ) : bool
key string The key to install
return bool
        protected virtual bool InstallLicenseKey(string key)
        {
            try
            {
                _license = GetLicenseProvider().InstallLicense(_licenseType, key);
                return (_license != null);
            }
            catch
            {
            }
            return false;
        }