Beispiel #1
0
 /// <summary>
 /// Add a timestamp
 /// </summary>
 /// <param name="timestamp"></param>
 public void AddTimestamp(DmlTimestamp timestamp)
 {
     if (Begun)
     {
         throw new TimelineException("Cannot add new timestamp to already begun timeline.");
     }
     Timestamps.Add(timestamp);
 }
Beispiel #2
0
 /// <summary>
 /// Add a timestamp
 /// </summary>
 /// <param name="timestamp"></param>
 public void AddTimestamp(DmlTimestamp timestamp)
 {
     if (Begun)
         throw new TimelineException("Cannot add new timestamp to already begun timeline.");
     Timestamps.Add(timestamp);
 }