How to perform web search in Windows Phone using C# ?

You can use the “Search Task” Launcher to launch the web serach App and perform search of the keyword .

How to perform web search in Windows Phone using C# ?

To perform web search in Windows Phone in C# , follow the below steps

1. Add the Namespace “Microsoft.Phone.Tasks” .

2. Create an instance of the SearchTask and assign the search text to the SearchQuery property of the SearchTask object and call the Show method of the SearchTask . For example , we can assign “senthil kumar windows phone” as the text to be searched

SearchTask SearchWeb = new SearchTask();

SearchWeb.SearchQuery = "senthil kumar windows phone";

SearchWeb.Show();

 

 

Leave A Reply

Your email address will not be published. Required fields are marked *

You May Also Like

In this post, you’ll learn about the Win32 Error “0x000019E5 – ERROR_COULD_NOT_RESIZE_LOG” that you get when debugging system erors in...
In this post, you’ll learn about the error “CO_E_DBERROR 0x8004E02B” that is returned when working with COM based APIs or...
In this post, you’ll learn about the Win32 Error “0x000019D0 – ERROR_LOG_BLOCK_VERSION” that you get when debugging system erors in...