コード例 #1
0
 /// <summary>Shows the Windows Phone Marketplace client application and displays the search results from the specified search terms.</summary>
 public void Show()
 {
     if (!ChooserHelper.NavigationInProgressGuard(delegate
     {
         this.Show();
     }
                                                  ))
     {
         return;
     }
     MarketplaceLauncher.Show((MarketplaceContent)this._marketPlaceContentType, MarketplaceOperation.Search, this._searchTerms);
 }
コード例 #2
0
 /// <summary>Shows the Windows Phone Marketplace client application and displays the review page for the specified product.</summary>
 public void Show()
 {
     if (!ChooserHelper.NavigationInProgressGuard(delegate
     {
         this.Show();
     }
                                                  ))
     {
         return;
     }
     MarketplaceLauncher.Show(MarketplaceContent.Applications, MarketplaceOperation.ReviewItem, null);
 }