I’m new at YouTube Data API as well as C#. I want to search the video and display the result into a listview and I did but I can’t did it asynchronously. I’ve searched and try a lot but end up with nothing.
http://google-gdata.googlecode.com/svn/docs/folder48/Multithreadedoperations.html
Please help me.
Most WebService API’s (especially RESTful ones) do not provide an async way to retrieve results, since in general, they try to remain stateless: I believe that the Youtube API is no exception.
Instead you will need to lean on traditional methods for simulating async requests, such as one of the following:
[edit: for .NET I see that might not be such a good candidate for the reactor based approach]
There is nothing special about YouTube in this regard: you might employ the same techniques when fetching large result sets from most API’s.