我有一个 Windows 服务,我想知道它什么时候不工作,不是每隔 xx 分钟左右,而是什么时候停止
我有这个方法
public string ServiceStatus()
{
switch (_service.Status)
{
case ServiceControllerStatus.Running:
return "Running";
case ServiceControllerStatus.Stopped:
return "Stopped";
case ServiceControllerStatus.Paused:
return "Paused";
case ServiceControllerStatus.StopPending:
return "Stopping";
case ServiceControllerStatus.StartPending:
return "Starting";
default:
return "Status Changing";
}
}
对不起,我的英语不好