Example #1
0
        private async Task <LicensingSettings> LoadLicensingSettingsAsync()
        {
            var license = await AppSettingsService.GetLicensingSettingsAsync();

            if (license == null)
            {
                return(new LicensingSettings());
            }

            return(license);
        }