Asynchronous tcp client

Hi All,

Does netmf 4.1 support an asynchronous tcp client with sockets? and if so, is it smart to use it on embedded devices like FEZ Spider & Hydra?

Async not supported.

You should be able to create an “async” helper object, that raises events that your main thread subscribes to. Your client object does the heavy lifting on another thread and raises event(s) when data is avail.

thx guys for the response!!

@ William: is there any example code on this?