Exemple #1
0
 public static Context CreateToTest(string payloadCommand, PayloadGenerationCompleted action = null) =>
 new Context(ExecutionMode.Test, payloadCommand, action);
Exemple #2
0
 private Context(ExecutionMode mode, string command, PayloadGenerationCompleted action)
 {
     Mode           = mode;
     PayloadCommand = command;
     payloadGenerationCompletedAction = action;
 }