Beispiel #1
0
 public void ReceivedEventNotification(BacNetRawMessage msg)
 {
     UnconfirmedEventNotification apdu;
     try
     {
         apdu = new UnconfirmedEventNotification(msg.Apdu);
     }
     catch { return; }
     BacNetDevice.Instance.OnNotificationEvent(apdu);
 }