コード例 #1
0
 public async Task GetSearchResults(List <int> forumIds)
 {
     IsLoading = true;
     try
     {
         SearchPageScrollingCollection = new SearchPageScrollingCollection(forumIds, SearchTerms);
         App.RootFrame.Navigate(typeof(SearchResultsPage));
     }
     catch (Exception ex)
     {
         AwfulDebugger.SendMessageDialogAsync("Failed to get results", ex);
     }
     IsLoading = false;
 }
コード例 #2
0
        public async Task GetSearchResults(List<int> forumIds)
        {
            IsLoading = true;
            try
            {
                SearchPageScrollingCollection = new SearchPageScrollingCollection(forumIds, SearchTerms);
                App.RootFrame.Navigate(typeof(SearchResultsPage));
            }
            catch (Exception ex)
            {

                AwfulDebugger.SendMessageDialogAsync("Failed to get results", ex);
            }
            IsLoading = false;
        }