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