Search code examples
c#windows-runtimewindows-store-appswindows-phone-8.1windows-store

How to get result from LaunchUriAsync(Uri)


I'm use the following function to prompt the user to rate my app:

Launcher.LauLauncher.LaunchUriAsync(
    new Uri("ms-windows-store:reviewapp?appid=" + APP_ID))

I want to check if user click on the "Cancel" button in page rating.

How can I check if the user clicks on the "Cancel" button?


Solution

  • Basically you're asking whether it's possible to determine whether the user actually left a rating/review when you invoke the Store URI. Unfortunately, this isn't possible at present, but it is a frequently requested capability.