I have been trying to bring back 20 results of images using the Bing API. Here's the code:

SearchRequest request = new SearchRequest();
request.AppId = APPID;
request.Query = HttpUtility.HtmlEncode(searchQuery);
request.Sources = new SourceType[] { SourceType.Image };
request.Image = new ImageRequest();
request.Image.Count = 20;
request.Image.Filters = new string[1] { "Size:Medium" };

Now everything on here works, including the Image.Filters property. Just not the Count property. Is there a known bug or am I just missing something here?

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

I'm not sure really sure about this but I think you are missing setting CountSpecified property. Try this

request.Image = new ImageRequest();
request.Image.Offset = 0;
request.Image.Count = 20;
request.Image.CountSpecified = true;
request.Image.Filters = new string[1] { "Size:Medium" };
link|improve this answer
Nice catch. I didn't see this anywhere in the documentation. Thanks. – loyalpenguin Apr 1 '11 at 21:34
feedback

Your Answer

 
or
required, but never shown

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