コード例 #1
0
 /// <summary>
 /// Returns data points recorded in a range of time (limited to 7 days and 5000 records)
 /// </summary>
 /// <param name="From">starting point of the time period for your date range of notifications sent</param>
 /// <param name="To">ending point of the time period for your date range for notifications sent</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> GetSentNotifications(string From, string To, long SensorID = 0)
 {
     return(await _notificationClient.GetSentNotifications(From, To, SensorID));
 }