In last two post, we learnt about 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 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; } // Set the application GUID
    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.

Have a question? Or, a comment? Let's Discuss it below...

dhgate

Thank you for visiting our website!

We value your engagement and would love to hear your thoughts. Don't forget to leave a comment below to share your feedback, opinions, or questions.

We believe in fostering an interactive and inclusive community, and your comments play a crucial role in creating that environment.