[Mono-bugs] [Bug 76455][Min] Changed - Process .Exited event doesnt ever get thrown

bugzilla-daemon at bugzilla.ximian.com bugzilla-daemon at bugzilla.ximian.com
Mon Oct 17 10:40:35 EDT 2005


Please do not reply to this email- if you want to comment on the bug, go to the
URL shown below and enter your comments there.

Changed by carlos at applianz.com.

http://bugzilla.ximian.com/show_bug.cgi?id=76455

--- shadow/76455	2005-10-17 07:56:18.000000000 -0400
+++ shadow/76455.tmp.18874	2005-10-17 10:40:35.000000000 -0400
@@ -57,6 +57,16 @@
 This by design. The Process class is only able to monitor mono
 processes.
 
 
 ------- Additional Comments From dick at ximian.com  2005-10-17 07:56 -------
 Processes started by mono, that is
+
+------- Additional Comments From carlos at applianz.com  2005-10-17 10:40 -------
+The process was started by Mono.
+
+ProcessStartInfo info = new ProcessStartInfo("xcalc");
+			Process p = new Process();
+			p.StartInfo = info;
+			p.EnableRaisingEvents = true;
+			p.Exited +=new EventHandler(p_Exited);
+			p.Start();


More information about the mono-bugs mailing list