Console.WriteLine("Got {0} of {1} results", results.Results.Count, results.TotalResults);
foreach (SearchMovie result in results.Results)
Console.WriteLine(result.Title);
However, another way to get all James Bond movies, is to use the collection-approach. TMDb makes collections for series of movies, such as Die Hard and James Bond. I know there is one, so I will show how to search for the collection, and then list all movies in it:
Console.WriteLine("Got {0} James Bond Movies", jamesBonds.Parts.Count);
foreach (Part part in jamesBonds.Parts)
Console.WriteLine(part.Title);
Apiary
------
TMDb have provided an Apiary interface. Apiary is an API documentation service, which also provides a nifty feature that proxies a service through them. It then allows them to log all calls you make to TMDb, and get them shown at Apiary for debugging purposes. This is especially handy if you've set up a client on a server, where it isn't possible to debug web requests.
I use it to debug the library. It ***shouldn't be necesary for you*** to use Apiary for this library, as the library *should* work.
To use this, create an account with Apiary, and view TMDb's API (http://docs.themoviedb.apiary.io/). Open the inspector tab, and note down your personal proxy URL. It looks like this: *http://private-____-themoviedb.apiary.io*.
Instantiate the client like this:
TMDbClient client = new TMDbClient("APIKey", false, "private-____-themoviedb.apiary.io");