What's the best .NET communication component or protocol for very low bandwidth and intermittently connected communication (i.e.: < 10 kilobits/sec)?
views:
162answers:
5
+1
A:
Probably System.Net.Sockets.
Socket
. There is also a TcpClient
and UdpClient
in that namespace.
Mark Cidade
2008-10-04 04:54:53
+1
A:
You probably want a Socket and TCP/IP for the connection a very low overhead and friendly serialization format is protocoll buffers, a good .NET implementation is protobuf-net
Torbjörn Gyllebring
2008-10-04 10:47:50