Exemplo n.º 1
0
            public TestObject2NotificationHandler2(IDynamicFilteredNotificationManager <TestObject2> registrar)
            {
                _registrar = registrar;

                // Dynamically add this class as a handler for the notification type 'YourNotificationTypeHere'
                _registrar.RegisterHandler(this);
            }
Exemplo n.º 2
0
 public TestObject2NotificationHandlerAll(IDynamicFilteredNotificationManager <TestObject2> manager) : base(manager)
 {
 }
 public BaseDynamicFilteredNotificationHandler(IDynamicFilteredNotificationManager <TFilteredNotification> manager)
 {
     _manager = manager;
     _manager.RegisterHandler(this);
 }