You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Throws if process is already dead, note that process could die between HasExited check and Kill
395
396
}
396
397
}
398
+
399
+
// Wait for exit
400
+
//
401
+
// Even after HasExited is true, there may still be output to be read. See https://github.com/dotnet/runtime/blob/91b93eb22bc7d9029a38469e55aa72d52c087834/src/libraries/System.Diagnostics.Process/src/System/Diagnostics/Process.cs#L1475.
402
+
//
403
+
// Should not throw. Process has started so Process._haveProcessID and Process._haveProcessHandle are true. They are only set to false
404
+
// by Process.Close, which is only called by Process.Dispose, called below.
0 commit comments