In last two posts, we learnt how to search in the WP7 Marketplace using the MarketplaceSearchTask
and how to launch the WP7 Marketplace Hub using the MarketplaceHubTask
? Today in this small post, we will learn how to launch the application details page.
If you searched application in Marketplace using the marketplace client, you would be familiar about the application details page. The details page consists of information about the application including install & share button and reviews section. You might want to add that page in your application. Continue reading to learn about the API.
Like MarketplaceSearchTask and MarketplaceHubTask, there is another launchers API called MarketplaceDetailTask. MarketplaceDetailTask
exposes a property called ContentIdentifier
which takes the application GUID as parameter and opens up the application details page in the screen.
Here is the Meta Data of the MarketplaceDetailTask Class
public sealed class MarketplaceDetailTask
{
public MarketplaceContentType ContentType { get; set; }
public string ContentIdentifier { get; set; }
public void Show();
}
Based on your requirement, set the ContentType
to either Application
or Music
. As a short note, you need the application GUID to set as the ContentIdentifier
to launch it.
Here is the sample code snippet:
var marketplaceDetailTask = new MarketplaceDetailTask
{
ContentType = MarketplaceContentType.Applications,
ContentIdentifier = "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx"
};
marketplaceDetailTask.Show();
When you execute the above code snippet, you will see the application details page in your phone device for which you entered the ContentIdentifier
. Just replace the exact value to continue.
I hope that this small post was also helpful for you to understand the use of the API “MarketplaceDetailTask
”. Stay tuned to my blog, facebook and twitter for many more articles, news and tips on Silverlight and Windows Phone 7.
Reference: http://www.kunal-chowdhury.com
You may like to follow me on twitter @kunal2383 or may like the Facebook page of my blog http://www.facebook.com/blog.kunal2383.