windows application http client

  • Thread starter Thread starter z. f.
  • Start date Start date
z. f. said:
what are the http client classes i can use in a windows application?

For the most part, you only need to use
(Http)WebRequest/(Http)WebResponse/(Http)WebClient.

For more control over things, you might want to look at Indy:
www.indyproject.org
 
* "z. f. said:
what are the http client classes i can use in a windows application?

Have a look at the classes in the 'System.Web' and the 'System.Net'
webspaces. Notice that you will have to reference libraries in order to
use them in your application.
 
Back
Top