/**
  * <summary>
  *   Returns the end time of the dataset, relative to the Jan 1, 1970.
  * <para>
  *   When the <c>YDataSet</c> object is created, the end time is the value passed
  *   in parameter to the <c>get_dataSet()</c> function. After the
  *   very first call to <c>loadMore()</c>, the end time is updated
  *   to reflect the timestamp of the last measure actually found in the
  *   dataLogger within the specified range.
  * </para>
  * <para>
  *   <b>DEPRECATED</b>: This method has been replaced by <c>get_summary()</c>
  *   which contain more precise informations.
  * </para>
  * <para>
  * </para>
  * </summary>
  * <returns>
  *   an unsigned number corresponding to the number of seconds
  *   between the Jan 1, 1970 and the end of this data
  *   set (i.e. Unix time representation of the absolute time).
  * </returns>
  */
 public virtual long get_endTimeUTC()
 {
     return(_objref.get_endTimeUTC());
 }