Specifies the mode for handling process cancellation.
[DefaultValue(ProcessExitBehaviour.GracefulExit)]
public enum ProcessExitBehaviour
kind:method, kind:property, kind:ctor. Press Esc to clear.ForcefulExitForcefully terminates the Process upon request along with all child processes.GracefulExitGracefully cancels the Process upon request using SIGTERM/SIGINT Signals, or a if that fails.WaitForExitThe Process will run until it initiates exit.