async private void adView_ProcessedRichmediaRequest(object sender, MASTAdView.ProcessedRichmediaRequestEventArgs e) { // Since these events can come from a non-main/UI thread, dispatch properly. await Dispatcher.RunAsync(Windows.UI.Core.CoreDispatcherPriority.Normal, delegate() { textBlock.Text += "URI:" + e.URI + " Handled:" + e.Handled + "\n\n"; }); }
private void adView_ProcessedRichmediaRequest(object sender, MASTAdView.ProcessedRichmediaRequestEventArgs e) { string entry = "adView_ProcessedRichmediaRequest URI:" + e.URI + " Handled:" + e.Handled; addEntry(entry); }