0

我安装了 Windows 服务,

Some.WindowsService wService = new WindowsService();
Some.Server server = new Server();
Some.Service service = new Service();
Some.Request request = new Some.Request(msg, Id);
var ReturnedResult = server.Execute(request);

我检查了服务,“一些”在服务中正常运行。我不知道如何初始化,以便我可以访问OnStart()WindowsService 中的受保护函数,以便它可以调用 Function 中的OnStart()函数。

任何想法表示赞赏。非常感谢。:)

4

1 回答 1

1

您可以测试的一种方法是编写日志文件或Windows 事件日志

System.Diagnostics.EventLog appLog = 
    new System.Diagnostics.EventLog() ;
appLog.Source = "This Application's Name";
appLog.WriteEntry("An entry to the Application event log.");
于 2013-10-16T20:10:31.253 回答