Detect End Process From Task Manager In C#

耗尽温柔 提交于 2019-11-30 04:46:37

问题


I have an application in C#, and would like to monitor its current status, i.e. whether its running or closed. So far i am able to track the status if the application exits during a run time error, or any other in application exit codes.

But i am unable to log the application status when it is force closed by task manager.

Is there a way to monitor End Process events? or do i have to design a separate service to keep a watch on my application (which i find would be a waste of resources)?

Brief History: The application is a WCF subscriber Application that is meant to run as a background process and receive data from the server. I don't want to use a windows service as i am designing a GUI which allows the clients to send requests to the server for specif data.

This application is linked to another application which keeps track of the subscriber whether, the subscriber is online or offline.

Thus was looking for a way to track abrupt application close and notify the users accordingly.


回答1:


I'm sure I have seen a question like this on SO before, so this is probably a duplicate, but I cannot find it, so...

Here is a short wrapup:

  • If you select a process in "Processes" tab and click "End Process" the process is being killed using TerminateProcess() - there is no way you can even intercept that from your process, let alone, prevent it.

  • If you select an "application" from the "Applications" tag and click "End Task", what happens depends on the type of application:

    • Console Applications are being send a CTRL_CLOSE_EVENT event.
    • Windows/GUI Applications are being send a WM_CLOSE message.

    You could respond (or handle with logging, etc.) both.

Update: Just fond the source again.

Update 2: found a/the duplicate and voting to close. I leave this answer here for now.




回答2:


Process.WaitForExit() and Process.Exited event. see here for more info



来源:https://stackoverflow.com/questions/12313126/detect-end-process-from-task-manager-in-c-sharp

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!