Exemplo n.º 1
0
 /// <summary>
 ///   Gets the end timestamp as an epoch timestamp.
 /// </summary>
 /// <param name="query">The query.</param>
 public static long?GetEndTimestampAsEpoch(this CellQuery query)
 {
     return(AsEpoch(query.EndTimestamp));
 }
Exemplo n.º 2
0
 /// <summary>
 ///   Gets the end timestamp as a <see cref="DateTime" />.
 /// </summary>
 /// <param name="query">The query.</param>
 public static DateTime?GetEndTimestampAsDateTime(this CellQuery query)
 {
     return(AsDateTime(query.EndTimestamp));
 }