Thursday, January 30, 2014

How to Launch the Application Details Page in Windows Phone Store using C#?

Below is a sample code snippet that demonstrates how to use the MarketplaceDetailTask. Modify the Content Identifier to specify the app for which the details page needs to be shown.

MarketplaceDetailTask task = new MarketplaceDetailTask();

task.ContentIdentifier = "<App ID>";

task.ContentType = MarketplaceContentType.Applications;

task.Show();