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 ?
SOCKS communication using .net framework 4.0
4.3k Views Asked by Dinu At
3
There are 3 best solutions below
0

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

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.
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