2

I am sending a big endian byte array to a UDP host and all works well, but I need to incorporate proxies into the mix.

From what I've found (or haven't found) there is no straight forward way to use anonymous proxies (or even Socks4/5) with UdpClient. Can anyone help?

Lee Taylor
  • 7,761
  • 16
  • 33
  • 49
Vince Severson
  • 51
  • 1
  • 1
  • 2

1 Answers1

0

You should use System.Net.HttpWebRequest.Proxy for the proxy. Check the MSDN code snippet link for more information. I had a similar problem and this helped.

Georg
  • 378
  • 1
  • 3
  • 10