在Silverlight中接收单播UDP数据包
我想编写一个 Silverlight 应用程序,该应用程序将在给定端口(例如 5004)上接收 UDP 数据包。本质上我想要:
byte[] data = new UdpClient(5004).Receive(ref endPoint);
Silverlight 中的该代码的等效项是什么?
I want to write a Silverlight application that would be receiving UDP packets on a given port, e.g. 5004. Essentially I want:
byte[] data = new UdpClient(5004).Receive(ref endPoint);
What would be an equivalent of that code in Silverlight?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
套接字从 Silverlight 2 开始可用,但它不包括 UdpClient。
System.Net.Sockets
http:// weblogs.asp.net/mschwarz/archive/2008/03/07/silverlight-2-and-sockets.aspx
Sockets are available as of Silverlight 2, though it doesn't include the UdpClient.
System.Net.Sockets
http://weblogs.asp.net/mschwarz/archive/2008/03/07/silverlight-2-and-sockets.aspx