Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
从 Windows 服务中调用 Environment.Exit 是否会使 SCM 调用服务的 onStop() 方法,或者这种行为是不可预测的?
我有几个具有此代码的 Windows 服务。不幸的是,我无法消除这种行为。但是我需要知道是否会调用 onStop() 来决定是在该方法中还是在调用 Environment.Exit 的方法中放置一些常见的停止代码。
Enviroment.Exit将关闭由服务包装的进程。
Enviroment.Exit
因此,调用它,不会调用onStop()方法。
onStop()
您可以自己调用该方法,而不是调用Exit
Exit
您可以使用以下代码来调用SCM stop
SCM stop
System.ServiceProcess.ServiceController svc = new System.ServiceProcess.ServiceController("NameOfYourService"); svc.Stop();