0

我的问题是我有一个 Windows 服务,它在我启动服务后立即运行我的 onstart 代码,然后在我设置的一分钟计时器启动它后再次运行。如果有人知道什么会导致这种情况,那就太好了。如果不是对 Windows 服务结构如何有帮助的解释。下面我复制了一份服务大纲;我很好奇在构造函数之前和构造函数中可以和应该在类中做什么。帮助将不胜感激。

namespace TestService
{
    public partial class Service1 : ServiceBase
    {   
        //What can/should go in here : When will this execute

        public Service1()
        {
            InitializeComponent();

        }

        protected override void OnStart(string[] args)
        {

        }

        protected override void OnStop()
        {

        }
    }
}
4

0 回答 0