I’m trying to update an application from vb6 to vb.net. The orig app used the winsock control. Unfortunately I can’t nor do I want to use it in the re-write. Are there any decent public classes with events that wrap the Socket class? I’ve found a few on google but all were buggy and I think it may be a little over my head to write my own from scratch.
Share
Sockets are built in now: http://msdn.microsoft.com/en-us/library/system.net.sockets(VS.71).aspx
If you are doing web related tasks then you should look at System.Net.WebClient or System.Net.HttpWebRequest.