Click here to Skip to main content
15,886,639 members
Articles / Mobile Apps / Windows Phone 7

How to Launch the WP7 Application Details Page using the MarketplaceDetailTask?

Rate me:
Please Sign up or sign in to vote.
4.80/5 (2 votes)
19 Apr 2012CPOL1 min read 9K   2  
How to launch the WP7 Application Details Page using the MarketplaceDetailTask?

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

C#
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:

C#
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.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Technical Lead
India India

Kunal Chowdhury is a former Microsoft "Windows Platform Development" MVP (Most Valuable Professional, 2010 - 2018), a Codeproject Mentor, Speaker in various Microsoft events, Author, passionate Blogger and a Senior Technical Lead by profession.

He is currently working in an MNC located in India. He has a very good skill over XAML, C#, Silverlight, Windows Phone, WPF and Windows app development. He posts his findings, articles, tutorials in his technical blog (www.kunal-chowdhury.com) and CodeProject.


Books authored:


Connect with Kunal on:





Comments and Discussions

 
-- There are no messages in this forum --