| 12345678910111213141516171819202122232425262728293031323334 |
- using System.Collections.Generic;
- using System.Configuration;
- using System.ServiceProcess;
- namespace CallCenter.QuartzService
- {
- public partial class SMSService : ServiceBase
- {
- public SMSService()
- {
- InitializeComponent();
- }
- Log log = LogFactory.GetLogger("服务");
-
- public void Shutdown()
- {
- }
- protected override void OnStop()
- {
- log.Warn("服务停止");
- }
-
- protected override void OnShutdown()
- {
- log.Warn("服务关闭");
- }
- }
- }
|