How do we use the Bing API in C#? I have to pass a query to the Bing API and then get the results.

link|improve this question
feedback

4 Answers

up vote 1 down vote accepted

Download bing dlls from microsoft site and add those dlls . Then only we can able to use bing service.

link|improve this answer
Hello, any links for where these dlls can be downloaded? – Smith Nov 25 '11 at 14:03
feedback
BingService.BingService service = new BingService.BingService();

        SearchRequest request = new SearchRequest();
        // use your Bing AppID
        request.AppId = ""; /* Your App ID */
        request.Query = "rose"; // your search query

        // I want to search only web
        request.Sources = new SourceType[]
        {
            SourceType.Image 
        };

        SearchResponse response = service.Search(request);

        foreach (ImageResult result in response.Image.Results)
        {

            //lstBxImages.Items.Add("<a href="+result.Url + '"'+"></a>" + result.Title);
            imgliteral.Controls.Add(new LiteralControl("<img src=" + result.MediaUrl + " width=100
link|improve this answer
what are the things i need to runn this code, and where do i get them? – Smith Nov 25 '11 at 14:04
feedback

Just adding to above there is a full documentation of te API given by BING in a PDF.

Here is a Basic Details Version

link|improve this answer
feedback

hii..

Add a bing reference to web references in an application and use search.wsdl

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.