AdvancedLauncher.Tools.Execution.ParentProcessUtilities.GetParentProcess C# (CSharp) Method

GetParentProcess() public static method

Gets the parent process of the current process.
public static GetParentProcess ( ) : Process
return System.Diagnostics.Process
        public static Process GetParentProcess()
        {
            return GetParentProcess(Process.GetCurrentProcess().Handle);
        }

Same methods

ParentProcessUtilities::GetParentProcess ( IntPtr handle ) : Process
ParentProcessUtilities::GetParentProcess ( int id ) : Process
ParentProcessUtilities