Showing posts with label vb. Show all posts
Showing posts with label vb. Show all posts

Wednesday, April 20, 2011

Basic Knowledge/Tutorial Programming About Socket in .NET

The Socket class provides a rich set of methods and properties for network communications. The Socket class allows you to perform both synchronous and asynchronous data transfer using any of the communication protocols listed in the ProtocolType enumeration.

The Socket class follows the .NET Framework naming pattern for asynchronous methods. For example, the synchronous Receive method corresponds to the asynchronous BeginReceive and EndReceive methods.