搜索局域网内IPCamera设备

luocunjia 62 0 DOCX 2018-12-28 11:12:24

搜索局域网内IPCamera设备 public Receiver() { _thread = new Thread( delegate() { // Create the client UDP socket. Listing on port 9003 IPEndPoint endPoint = new IPEndPoint(IPAddress.Any, 9003); UdpClient client = new UdpClient(endPoint); // Receive the packets asynchronously. client.BeginReceive( new AsyncCallback(OnPacketR eceived), new UdpState() { Client = client, EndPoint = endPoint }); // Wait for the thread to end. _shutdownThread.WaitOne(); } ); } eceived), new UdpState() { Client = client, EndPoint = endPoint }); // Wait for the thread to end. _shutdownThread.WaitOne(); } ); }

搜索局域网内IPCamera设备

用户评论
请输入评论内容
评分:
Generic placeholder image 卡了网匿名网友 2018-12-28 11:12:24

非常好用,解决了我的问题