Ejemplo n.º 1
0
 /// <summary>
 /// Creates a new instance of EventTrackedEventArgs
 /// </summary>
 /// <param name="trackingEvent">The event that was tracked</param>
 /// <param name="skippedPast">A flag indicating whether or not the user was seeking when the event occurred</param>
 public PositionEventTrackedEventArgs(PositionTrackingEvent trackingEvent, bool skippedPast)
     : this(trackingEvent)
 {
     SkippedPast = skippedPast;
 }
Ejemplo n.º 2
0
 /// <summary>
 /// Creates a new instance of PositionEventTrackedEventArgs
 /// </summary>
 /// <param name="trackingEvent">The event that was tracked</param>
 public PositionEventTrackedEventArgs(PositionTrackingEvent trackingEvent)
     : base(trackingEvent)
 {
 }