Example #1
0
 protected IfCommand(bool not, CommandStatement command)
 {
     this.Not     = not;
     this.Command = command;
 }
Example #2
0
 public IfFileExistsCommand(bool not, string fileName, CommandStatement command) : base(not, command)
 {
     this.FileName = fileName;
 }
Example #3
0
 public IfEqualsCommand(bool not, string value1, string value2, CommandStatement command) : base(not, command)
 {
     this.Value1 = value1;
     this.Value2 = value2;
 }
Example #4
0
 public IfErrorLevelCommand(bool not, int errorLevel, CommandStatement command) : base(not, command)
 {
     this.ErrorLevel = errorLevel;
 }