Can use socket to connect to the outside world through http proxy in c#?

  • Thread starter Thread starter duying
  • Start date Start date
D

duying

Can use socket to connect to the outside world through http proxy in c#?

If it can do, How to do this?

thanks very much!
 
duying said:
Can use socket to connect to the outside world through http proxy in c#?

You don't normally use a socket to communicate through a proxy, possibly
with the exception of some tunneling protocols (and even then I guess
most people wouldn't talk about using a socket). If it's not something
rather weird you are trying to do, you might want to have a look at the
WebRequest and WebProxy classes in MSDN.


Oliver Sturm
 
Back
Top