C# Class AdvancedLauncher.Tools.Execution.ParentProcessUtilities

Show file Open project: GoldRenard/DMOAdvancedLauncher Class Usage Examples

Public Methods

Method Description
GetParentProcess ( ) : Process

Gets the parent process of the current process.

GetParentProcess ( IntPtr handle ) : Process

Gets the parent process of a specified process.

GetParentProcess ( int id ) : Process

Gets the parent process of specified process.

Method Details

GetParentProcess() public static method

Gets the parent process of the current process.
public static GetParentProcess ( ) : Process
return System.Diagnostics.Process

GetParentProcess() public static method

Gets the parent process of a specified process.
public static GetParentProcess ( IntPtr handle ) : Process
handle System.IntPtr The process handle.
return System.Diagnostics.Process

GetParentProcess() public static method

Gets the parent process of specified process.
public static GetParentProcess ( int id ) : Process
id int The process id.
return System.Diagnostics.Process