SOCKS communication using .net framework 4.0

4.3k Views Asked by At

I want to communicate with server to run my c# application and so I need to connect with server through sock communication. Is it possible using .net framework 4 ?

3

There are 3 best solutions below

0
On

Was looking for same thing and ran across this: Socks4/5 proxy in .net

It isn't .net 4.0 but it is a good jumping off point.1

0
On

Socks and Sockets are different .. Indeed if you wish to use sockets you could use System.Net.Sockets but, if you wish to use SOCKS (SOCKS client/server that can be used to provide convenient and secure network connectivity) you could use next example http://www.cknotes.com/?p=204

2
On

You could use the System.Net.Sockets class to connect to port on a remote server.

If you are looking for SOCKS C# libs you could go for these which works with HTTP, Socks4, Socks4a, and Socks5 proxy servers and comes with integrated help. It also works with Mono.

http://www.starksoft.com/prod_proxy.html

http://sourceforge.net/projects/starksoftproxyc/