Process terminating event
C#
2
Posts
2
Posters
0
Views
1
Watching
-
How can I get an event of one process that is terminating in other process.Any idea ?
-
How can I get an event of one process that is terminating in other process.Any idea ?
Get a
Process
object for the wanted process e.g. by callingProcess.GetProcessesByName
. Then set itsEnableRaisingEvents
property to true and register to itsExited
event.