Пример #1
0
 public SampleAddedItemHandler(ItemAddedNotifier <double> notifier)
     : base(notifier)
 {
 }
Пример #2
0
 public ItemAddedLastTimeStamped(ItemAddedNotifier <T> notifier)
 {
     this.notifier              = notifier;
     this.notifier.OnItemAdded += UpdateLastNotificationOnItemAdded;
     this.lastNotification      = DateTime.MinValue;
 }
Пример #3
0
 public AddedItemHandler(ItemAddedNotifier <T> notifier)
 {
     this.notifier              = notifier;
     this.notifier.OnItemAdded += new ItemAddedNotification <T>(OnItemAdded);
 }