John
John

Reputation: 539

Is it possible to link directly to "rate and review"?

Can i set the link of "rate and review" page of my app ?
Actually i want to give this link in "About" page of my app.

Upvotes: 4

Views: 1201

Answers (1)

MarcinJuraszek
MarcinJuraszek

Reputation: 125660

Use MarketplaceReviewTask Launcher instead of a link:

using Microsoft.Phone.Tasks;

(...)

MarketplaceReviewTask marketplaceReviewTask = new MarketplaceReviewTask();
marketplaceReviewTask.Show();

It's gonna open Marketplace app on your application page where user will be able to review your app.

Upvotes: 4

Related Questions