Application_Start 是否阻止所有传入请求
我有一些初始化静态单例类的代码,所有请求都需要它。因此我想我可以将它添加到 global.asax Application_Start 中。我能否 100% 确定在加载 Application_Start 时所有请求都会被阻止,以保证所有请求都可以访问它?
多谢 吉吉
I have some code that initializes a static singleton class, which is needed by all requests. Therefore I thought I could add it to global.asax Application_Start. Can I be 100% sure that all requests will block while Application_Start is loading to guarantee that all the requests will have access to it?
Thanks a lot
Jeeji
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
简短的回答:是的。
应用程序_开始:
http://msdn.microsoft.com/en-us/library/ms178473.aspx
Short answer: yes.
Application_Start:
http://msdn.microsoft.com/en-us/library/ms178473.aspx