Hi all,

I am dealing with sockets in my code.

I open them like -
System.Net.IPAd dress remoteIPAddress = System.Net.IPAd dress.Parse
(szIPSelected);
System.Net.IPEn dPoint remoteEndPoint = new System.Net.IPEn dPoint
(remoteIPAddres s, alPort);
// Connect to the remote End point in the socket.
m_socClient.Con nect(remoteEndP oint);

After having done my work I close it by-
m_socClient.Shu tdown(SocketShu tdown.Both);...