I want to receive (unicast) UDP packets on a given port in Silverlight 4 application, is it possible?
Essentially I want an equivalent of the following .NET code:
byte[] data = new UdpClient(5004).Receive(ref endPoint);
Background: I have an IP camera that is configured to push RTP stream to a given IP/port.