如何在 Web 服务上仅执行一次自定义代码函数
我只想在 Web 服务启动时执行一些代码一次。 我想使用 void Application_Start(object sender, EventArgs e)
但我在代码中遇到了
`Request.ServerVariables["SERVER_SOFTWARE"];`
异常 Request is not available in this context
似乎对象可能不可用尚存在,因为应用程序刚刚启动并且未处理请求。
知道如何解决这个问题吗? 我如何只执行一次我的代码。
I want to execute some code only once on start of a web service.
I thought to use void Application_Start(object sender, EventArgs e)
but I have in my code
`Request.ServerVariables["SERVER_SOFTWARE"];`
and I get exception Request is not available in this context
seems object probably doesn't exist yet becase the application is just starting and not processing Requests.
Any idea how I can solve this issue ?
How I can execute my code only once .
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用初始化为
false
的静态布尔字段来标记函数是否被调用,并在调用时将其设置为true
(最好在函数末尾完成)。仅当值为
false
时才执行函数中的代码。通过适当的锁定来执行此操作以避免可能的竞争条件(感谢 Yahia)。
Use a static Boolean field initialized to
false
to mark whether the function was called and set it totrue
one it was called (best done at the end of the function).Only execute the code in the function if the value is
false
.Do this with appropriate locking to avoid the possible race condition (thanks Yahia).