记录Web服务启动/停止

时间:2011-03-11 05:46:56

标签: c# .net

如何在Web服务代码中重新启动或停止.net Web服务

2 个答案:

答案 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)

使用onStartOnStop个事件。示例代码here