Example #1
0
 async void OnResumingAsync(object sender, object e)
 {
     try
     {
         await ImageElementManager.UpdateSource(this);
     }
     catch (Exception exception)
     {
         Log.Warning("Update image source after app resume",
                     $"ImageSource failed to update after app resume: {exception.Message}");
     }
 }
Example #2
0
 protected async Task UpdateSource()
 {
     await ImageElementManager.UpdateSource(this).ConfigureAwait(false);
 }