c# - Consuming Multiple Webservices at once -


i´ve been checking kayak.com , many other comparison websites create on demand queries multiple web services in order display best results. wondering best strategy consume multiple web services @ once these website do. thank much. sebastian.

you need threading in 1 form or other.

using fx <= 3.5, use threadpool

from 4.0 on, can use tasks better control on it.


Comments

Popular posts from this blog

C#: Application without a window or taskbar item (background app) that can still use Console.WriteLine() -

c# - Making TableLayoutPanel Act Like An HTML Table (Cells That Resize Automatically Around Text) -