Inheritance: ICommand
Esempio n. 1
0
 protected Command(Command parent)
 {
     _parent = parent;
 }
Esempio n. 2
0
 public RenameCommand(Command parent, string newName)
     : base(parent)
 {
     _newName = newName;
 }
Esempio n. 3
0
 public DropCommand(Command parent)
     : base(parent)
 {
 }
Esempio n. 4
0
 public CallCommand(Command parent, Action<IRuntimeContext> action)
     : base(parent)
 {
     _action = action;
 }