Sockets for network communications netmf 4.3

Hi!

Please tell me how to connect to the SDK 4.3 NETMF for VS2013 “GHIElectronics.NETMF.Net.Sockets”?

I have an error “Error 1 The type or namespace name ‘NETMF’ does not exist in the namespace ‘GHIElectronics’ (are you missing an assembly reference?)”

My program is to take from the PC data , process them and send them back to your PC. I had planned to do this with Sockets.

I have Cerberus, sdk 4.3, ethernet ens28

Sockets are not in GHI namespaces.
They are part of NETMF SDK.
Check to have all references like Microsoft.SPOT.Net and Sysdtem.Net.

@ Reinhard Ostermeier -
OK. I included it all


using System;
using System.Collections;
using System.Threading;
using Microsoft.SPOT;
using Microsoft.SPOT.Presentation;
using Microsoft.SPOT.Presentation.Controls;
using Microsoft.SPOT.Presentation.Media;
using Microsoft.SPOT.Presentation.Shapes;
using Microsoft.SPOT.Touch;
using Microsoft.SPOT.Net.NetworkInformation;
using Gadgeteer.SocketInterfaces;
using Gadgeteer.Networking;
using GT = Gadgeteer;
using GTM = Gadgeteer.Modules;
using Gadgeteer.Modules.GHIElectronics;
using Microsoft.SPOT.Net;
using GHI.Networking;

But when writing an error



[em]Error	1	The type or namespace name 'Socket' could not be found (are you missing a using directive or an assembly reference?)	[/em]


Please tell me what I'm doing wrong ?

Have you added the references to the dll’s in solution Explorer?

@ Reinhard Ostermeier - Yes, i have.

According to the platform SDK documentation (available as download on codeplex), the class Socket is in assembly System.dll, which is missing in your references.