コード例 #1
0
        private async void NewCredentialsCheck()
        {
            List <Credential> newCredentials = await DataService.GetIssuedCredentials();            // Call API

            if (newCredentials != null && newCredentials.Count > 0)
            {
                await CredentialRepository.AddNewCredentialsAsync(newCredentials);

                foreach (Credential c in newCredentials)
                {
                    userCredentials.Add(c);
                }
                credentialList.ItemsSource = userCredentials;
                await DisplayAlert("New Credentials", "Success! Your new Credentials have been added to your account! Please restart the app to view them.", "OK");
            }
            else
            {
                System.Diagnostics.Debug.WriteLine(CredentialRepository.StatusMessage);
            }
        }