简体   繁体   中英

How to check in c# Windows 8 application if it has been already rated and reviewed by current user

My goal is to display message that begs current user to rate and review my freeware Windows 8 application in Windows Store. I don't want to show that message if the application has been already rated and reviewed.

So my question is: How can I check at runtime if my Windows 8 application has been already rated and reviwed by current user?

I already know that applications, which are installed through the Windows Store, has the "Rate and review" in settings, but users rather rarely uses it when they don't have to change application settings at all.

An alternative is to ask you to review and rate your app if you haven't done so and provide a link to your app in the store. See sample code below.

var storeURI = new Uri("ms-windows-store:PDP?PFN="); await Windows.System.Launcher.LaunchUriAsync(storeURI);

More info on "Windows 8 C# Store app - Link to store and reviews" at Windows 8 C# Store app - Link to store and reviews

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM