Exemplo n.º 1
0
 /// <summary>
 /// A configuration to copy a file.
 /// </summary>
 /// <param name="destinationPath">destination path</param>
 /// <param name="destination">destination host</param>
 /// <param name="when">when to copy</param>
 public CopyFileConfig(
     string destinationPath,
     CopyDestination destination,
     SequenceWhen when)
 {
     DestinationPath = destinationPath;
     CopyWhen = when;
 }
Exemplo n.º 2
0
 public CommandTaskConfig(SequenceWhen when)
     : base(when)
 {
 }
Exemplo n.º 3
0
 public TaskConfigInstance(SequenceWhen when)
 {
     ExecuteCommandWhen = when;
 }
 public VirtualMachineTaskConfig(SequenceWhen when)
     : base(when)
 {
     Command = VirtualMachineCommand.none;
 }
Exemplo n.º 5
0
 public TaskConfigProxy(SequenceWhen when)
 {
     _when = when;
 }
Exemplo n.º 6
0
 public TaskConfigProxy(TaskConfigInstance instance)
 {
     _when   = instance.ExecuteCommandWhen;
     _config = instance;
 }
Exemplo n.º 7
0
 public TaskConfigProxy(SequenceWhen when)
 {
     _when = when;
 }
Exemplo n.º 8
0
 public CommandTaskConfig(SequenceWhen when)
     : base(when)
 {
 }
Exemplo n.º 9
0
 public TaskConfigInstance(SequenceWhen when)
 {
     ExecuteCommandWhen = when;
 }
Exemplo n.º 10
0
 public TaskConfigProxy(TaskConfigInstance instance)
 {
     _when = instance.ExecuteCommandWhen;
     _config = instance;
 }
Exemplo n.º 11
0
 public abstract List <XmlResult> ExecuteSequence(SequenceWhen when);
Exemplo n.º 12
0
 public SnapshotTaskConfig(SequenceWhen when)
     : base(when)
 {
     Command = SnapshotCommand.none;
 }
 public VirtualMachineTaskConfig(SequenceWhen when)
     : base(when)
 {
     Command = VirtualMachineCommand.none;
 }