EddyLee
EddyLee

Reputation: 803

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?

Upvotes: 0

Views: 275

Answers (1)

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.

Upvotes: 2

Related Questions