public void ReportResults(IEnumerable <SearchResult> results)
 {
     try {
         outputPad.ReportResults(results);
     } catch (Exception ex) {
         LoggingService.LogError("Error adding search results.", ex.ToString());
     }
 }
Esempio n. 2
0
 protected virtual void OnReportResults(IEnumerable <SearchResult> results)
 {
     Runtime.RunInMainThread(delegate {
         try {
             outputPad.ReportResults(results);
         } catch (Exception ex) {
             LoggingService.LogError("Error adding search results.", ex.ToString());
         }
     });
 }