如何在Web服务代码中重新启动或停止.net Web服务
答案 0 :(得分:4)
假设您正在讨论整个Web服务应用程序,请检查Global.asax文件。您可以在Application_Start和Application_End事件中添加日志记录代码。
public class Global : System.Web.HttpApplication
{
void Application_Start(object sender, EventArgs e)
{
// Code that runs on application startup
// Add logging here
}
void Application_End(object sender, EventArgs e)
{
// Code that runs on application shutdown
// Add logging here
}
}
答案 1 :(得分:0)
使用onStart
和OnStop
个事件。示例代码here。