ChildProcessManagerAddProcess Method

Associates the specified process as a child of this ChildProcessManager instance.

Definition

Namespace: Gemstone.Diagnostics
Assembly: Gemstone.Diagnostics (in Gemstone.Diagnostics.dll) Version: 1.0.128 -- Release Build+d9d157c80da59365061f9bf4a5d1ecd0f0496e1b
public void AddProcess(
	Process process
)

Parameters

process  Process
The Process to associate.

Remarks

The process will be managed as an associated process of this ChildProcessManager instance. When this ChildProcessManager instance is disposed or garbage collected, the children processes will be terminated.

Creating an instance of this class with lifetime scope of the executing application will cause any child processes to be terminated when the parent process shuts down, on Windows environments this will happen even when the parent process termination is abnormal.

See Also