Ejemplo n.º 1
0
 /// <summary>
 /// Load data asynchronously
 /// </summary>
 public void LoadData()
 {
     // only load data for the network if connection is available
     if (NetworkInterface.GetIsNetworkAvailable())
     {
         ShowLoadingMessage();
         feedRepository.LoadFeedsAsync();
     }
     else
     {
         MessageBox.Show(Strings.ErrorInternetConnection);
     }
 }