Click or drag to resize

CommandCustomProcessStartInfo Property

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 };

Namespace: GSF.Console
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.253-beta+ffb7163c9e3b771705bc5b9aa3f09870f2cb9e2c
Syntax
public static ProcessStartInfo CustomProcessStartInfo { get; set; }
View Source

Property Value

ProcessStartInfo
See Also