如何在 Web 服务上仅执行一次自定义代码函数

发布于 2024-12-12 19:06:28 字数 314 浏览 1 评论 0原文

我只想在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

漫漫岁月 2024-12-19 19:06:28

使用初始化为 false 的静态布尔字段来标记函数是否被调用,并在调用时将其设置为 true(最好在函数末尾完成)。

仅当值为 false 时才执行函数中的代码。

通过适当的锁定来执行此操作以避免可能的竞争条件(感谢 Yahia)。

Use a static Boolean field initialized to false to mark whether the function was called and set it to true 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).

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文