ASP.NET MVC 如何从控制器访问 Global.asax 文件中的属性?
在 Global.asax 文件中,我管理一些线程,并且 - 从控制器 - 我需要调用该线程的事件。是否可以访问该线程?
in the Global.asax file, I manage some threads, and - from the Controller - I need to invoke an event of the one's thread. Is it possible to have access to that thread ?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用应用程序状态来存储一些将在应用程序的所有用户之间共享的对象:
并且在控制器内您可以访问此属性:
You could use the application state to store some object that will be shared among all users of the application:
and inside your controller you can access this property:
如果它是任何其他类型的对象(例如字符串),您也可以这样做,因为您需要在 Global.asax 中将该属性声明为静态,以使其可供应用程序的其余部分使用
:将可供应用程序的其余部分使用。您可以通过以下方式进行调用:
也就是说,我认为您不想以这种方式为应用程序的其余部分提供 Thread 。
You could if it were any other kind of object, like a string, because you'll need to declare the property as static in the
Global.asax
to make it available to the rest of the app:This will be available to the rest of the application. You can call by doing:
That said, I dont think you want to make a
Thread
available to the rest of the app this way.