How to Search for an App in Windows Phone Store using URI Scheme from WP8 App?

Below is a sample code snippet demonstrating Search for an App in Windows Phone Store using URI Scheme from WP8 App

How to Search for an App in Windows Phone Store using URI Scheme from WP8 App?

// Function to Search for an App in Windows Phone Store using URI Scheme in Windows Phone 8 using C#.

private async System.Threading.Tasks.Task SearchForAnApp()

{

await Launcher.LaunchUriAsync(new Uri("zune:search?keyword=calculator"));

}
%d