![]() |
Command Properties |
The Command type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() |
CustomProcessStartInfo | Customizable Command.ProcessStartInfo to set prior to Creating or Executing the CommandProcess. The original Process.StartInfo defaults are used when Command.CustomProcessStartInfo is null. Command.CustomProcessStartInfo is null to be consistent with earlier implementations. Example to create a Command.CustomProcessStartInfo with Gemstone default StartInfo but without creating a Window: GSF.Core.Console.Command.CustomProcessStartInfo = new() { UseShellExecute = false, RedirectStandardError = true, RedirectStandardOutput = true, CreateNoWindow = true }; |