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