Ejemplo n.º 1
0
 /// <summary>
 /// Returns data points recorded in a range of time (limited to a 12 hour window)
 /// </summary>
 /// <param name="Minutes">Number of minutes past Notifications will be returned</param>
 /// <param name="LastSentNotificationID">Limits notification results to notifications sent after this ID</param>
 /// <param name="SensorID">Limits which sensor notifications will come back. If this field is left null it will bring back all notifications for all sensors.</param>
 /// <returns>list of notification info</returns>
 public async Task <object> GetRecentlySentNotifications(short Minutes, long LastSentNotificationID = 0, long SensorID = 0)
 {
     return(await _notificationClient.GetRecentlySentNotifications(Minutes, LastSentNotificationID, SensorID));
 }