internal CommandLineConnectionFlowInitializer(Dictionary <string, string> commandLineArgs)
 {
     this.commandLineArgs = CommandLineArgs.From(commandLineArgs);
 }
 internal CommandLineConnectionParameterInitializer(Dictionary <string, string> args)
 {
     commandLineArgs = CommandLineArgs.From(args);
 }
 public CommandLineConnectionFlowInitializer()
 {
     commandLineArgs = CommandLineArgs.FromCommandLine();
 }
 public CommandLineConnectionParameterInitializer()
 {
     commandLineArgs = CommandLineArgs.FromCommandLine();
 }