Legend

Class
Struct
Enum
Interface
Delegate
Constructor
Method
Property
Event
Field

Static class: RT.Util.ExtensionMethods.ProcessExtensions

Summary

Provides extension methods on the Process type, as well as utility methods which are logically static extensions on the Process type but have to be invoked as static methods of this class.

Static methods

List<int>
ChildProcessIds(this Process process, bool recursive)
Returns a list of child processes of this process.
void
KillWithChildren(this Process process)
Kills this process and all children. Swallows all exceptions and does not wait for processes to die or check that they died.
IEnumerable<ValueTuple<int, int>> For each process in the system, enumerates a tuple of parent-process-id,process-id.