UpdateGeocachesAsync() public method

public UpdateGeocachesAsync ( Core db ) : System.Threading.Tasks.Task
db Core
return System.Threading.Tasks.Task
Ejemplo n.º 1
0
 private async void Button_Click(object sender, RoutedEventArgs e)
 {
     if (Core.ApplicationData.Instance.ActiveDatabase != null)
     {
         Import imp = new Import();
         await imp.UpdateGeocachesAsync(Core.ApplicationData.Instance.ActiveDatabase);
         Close();
     }
 }
Ejemplo n.º 2
0
        private async void Button_Click(object sender, RoutedEventArgs e)
        {
            if (Core.ApplicationData.Instance.ActiveDatabase != null)
            {
                Import imp = new Import();
                await imp.UpdateGeocachesAsync(Core.ApplicationData.Instance.ActiveDatabase);

                Close();
            }
        }