Наследование: IListenableObjectVisitor
Пример #1
0
        private void Visit(Action <INotifyPropertyChanged> property, Action <INotifyCollectionChanged> collection,
                           Action <JSCommand> command)
        {
            var visitor = new ListenableVisitor(property, collection, command);

            _Visitable.Visit(visitor);
        }
Пример #2
0
 private void Visit(Action<INotifyPropertyChanged> property, Action<INotifyCollectionChanged> collection,
                     Action<JSCommand> command )
 {
     var visitor = new ListenableVisitor(property, collection, command);
     _Visitable.Visit(visitor);
 }