Beispiel #1
0
 public async Task RemoveSentRequest(Guid requestId)
 {
     CoreApplication.MainView.CoreWindow.Dispatcher.RunAsync(CoreDispatcherPriority.Normal, () =>
     {
         var toRemove = SentRequests.FirstOrDefault(r => r.Id == requestId);
         SentRequests.Remove(toRemove);
     });
 }