This is the third in a series of articles describing the issues we have encountered when using Sockets in the .Net Micro Framework and highlights quite an acute problem.
Symptoms
You are attempting to connect to a remote endpoint over TCP. Your code looks not too dissimilar to this:
public void SendData(IPAddress address, int port)
{
IPEndPoint endpoint = new IPEndPoint(address, port);
using (var socket = new Socket(AddressFamily.InterNetwork
, Socket ...
[Read more]