Sets a pre-tokenised argument list. When non-empty, the control adapter emits these via instead of the single Arguments string, so the operating-system command-line parser passes each entry to the child process unmodified. If both Arguments and the argument list are set, the argument list takes precedence. This is the safe path for shell wrappers (PowerShell / cmd), whose own parser would otherwise re-interpret a single re-tokenised Arguments string, a command-injection vector.
IProcessConfigurationBuilder SetArgumentList(IReadOnlyList<string>? argumentList)
The pre-tokenised argument list.