protected void ThingsService_NodeRemoved(NodeNotificationEventArgs e)
 {
     if (NodeRemoved != null)
     {
         NodeRemoved(e);
     }
 }
 private void _things_GroupEvent(NodeNotificationEventArgs e)
 {
     Activities.Add(new NodeActivity
     {
         OccuredOn = DateTime.Now,
         EventType = "Group Event",
         NodeId = e.Id,
         Label = e.Label,
         Location = e.Location,
         Name = e.Name,
         Product = e.Product
     });
 }
 private void _things_EssentialNodeQueriesComplete(NodeNotificationEventArgs e)
 {
     Activities.Add(new NodeActivity
     {
         OccuredOn = DateTime.Now,
         EventType = "Essential Node Query Complete",
         NodeId = e.Id,
         Label = e.Label,
         Location = e.Location,
         Name = e.Name,
         Product = e.Product
     });
 }
 private void _things_Notification(NodeNotificationEventArgs e)
 {
     //Logger.Log("_things_Notification: {0}", e.Id);
 }
 private void _zwave_PollingEnabled(NodeNotificationEventArgs e)
 {
     OnPollingEnabled(e);
 }
 protected void OnGroupEvent(NodeNotificationEventArgs e)
 {
     if (GroupEvent != null)
     {
         GroupEvent(e);
     }
 }
 private void ThingsService_Notification(NodeNotificationEventArgs e)
 {
     if (Notification != null)
     {
         Notification(e);
     }
 }
 protected void OnPollingEnabled(NodeNotificationEventArgs e)
 {
     if (PollingEnabled != null)
     {
         PollingEnabled(e);
     }
 }
 private void _zwave_GroupEvent(NodeNotificationEventArgs e)
 {
     OnGroupEvent(e);
 }
Esempio n. 10
0
 protected void OnNodeRemoved(NodeNotificationEventArgs e)
 {
     if (NodeRemoved != null)
     {
         NodeRemoved(e);
     }
 }
Esempio n. 11
0
 protected void OnNotification(NodeNotificationEventArgs e)
 {
     if (Notification != null)
     {
         Notification(e);
     }
 }
Esempio n. 12
0
 protected void OnNodeQueriesComplete(NodeNotificationEventArgs e)
 {
     if (NodeQueriesComplete != null)
     {
         NodeQueriesComplete(e);
     }
 }
Esempio n. 13
0
 protected void OnNodeProtocolInfo(NodeNotificationEventArgs e)
 {
     if (NodeProtocolInfo != null)
     {
         NodeProtocolInfo(e);
     }
 }
Esempio n. 14
0
 protected void OnNodeNaming(NodeNotificationEventArgs e)
 {
     if (NodeNaming != null)
     {
         NodeNaming(e);
     }
 }
 private void ThingsService_GroupEvent(NodeNotificationEventArgs e)
 {
     if (GroupEvent != null)
     {
         GroupEvent(e);
     }
 }
Esempio n. 16
0
 private void _zwave_NodeProtocolInfo(NodeNotificationEventArgs e)
 {
     OnNodeProtocolInfo(e);
 }
 private void ThingsService_NodeProtocolInfo(NodeNotificationEventArgs e)
 {
     if (NodeProtocolInfo != null)
     {
         NodeProtocolInfo(e);
     }
 }
Esempio n. 18
0
 private void _zwave_NodeQueriesComplete(NodeNotificationEventArgs e)
 {
     OnNodeQueriesComplete(e);
 }
 private void ThingsService_PollingEnabled(NodeNotificationEventArgs e)
 {
     if (PollingEnabled != null)
     {
         PollingEnabled(e);
     }
 }
Esempio n. 20
0
 private void _zwave_Notification(NodeNotificationEventArgs e)
 {
     OnNotification(e);
 }
 private void ThingsService_EssentialNodeQueriesComplete(NodeNotificationEventArgs e)
 {
     if (EssentialNodeQueriesComplete != null)
     {
         EssentialNodeQueriesComplete(e);
     }
 }
Esempio n. 22
0
 protected void OnEssentialNodeQueriesComplete(NodeNotificationEventArgs e)
 {
     if (EssentialNodeQueriesComplete != null)
     {
         EssentialNodeQueriesComplete(e);
     }
 }