MarketplaceReviewTask in Windows Universal Apps

In Windows Phone 8 and earlier versions , we had the launcher called “MarketplaceReviewTask” that launches the Rate and Review app . There are times when you want to launch the Rate and Review App from your Application when developing Windows Phone 8.1 (XAML App) or Universal App.

MarketplaceReviewTask in Windows Universal Apps

You can use the Windows.System.Launcher.LaunchUriAsync method and provide the Uri scheme to launch the app as shown below.

string AppId = CurrentApp.AppId;
await Windows.System.Launcher.LaunchUriAsync(
    new Uri("ms-windows-store:reviewapp?appid=" + AppId ));

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you’ll learn about the Win32 Error “0x000019E5 – ERROR_COULD_NOT_RESIZE_LOG” that you get when debugging system erors in...
In this post, you’ll learn about the error “CO_E_DBERROR 0x8004E02B” that is returned when working with COM based APIs or...
In this post, you’ll learn about the Win32 Error “0x000019D0 – ERROR_LOG_BLOCK_VERSION” that you get when debugging system erors in...