in Win RT we have to use DatagramSocket instead of UdpClient. Ok but the following code gives me this error which I don't get on UdpClient.
var g = new DatagramSocket();
g.MessageReceived += g_MessageReceived;
await g.BindEndpointAsync(new HostName("0.0.0.0"), "5000"); //<--- this line
*IPAddress.Any = 0.0.0.0
I get this Error: "No such host is known. (Exception from HRESULT: 0x80072AF9)"