Inheritance: IListenableObjectVisitor
Exemplo n.º 1
0
        private void Visit(Action <INotifyPropertyChanged> property, Action <INotifyCollectionChanged> collection,
                           Action <JSCommand> command)
        {
            var visitor = new ListenableVisitor(property, collection, command);

            _Visitable.Visit(visitor);
        }
Exemplo n.º 2
0
 private void Visit(Action<INotifyPropertyChanged> property, Action<INotifyCollectionChanged> collection,
                     Action<JSCommand> command )
 {
     var visitor = new ListenableVisitor(property, collection, command);
     _Visitable.Visit(visitor);
 }