我可以将新路线映射到 Global.asax 之外的 RouteCollection 吗?
在 Global.asax RegisterRoutes() 方法首次执行后很长时间内,我偶尔会在程序执行期间将新路由映射到 RouteCollection。
我怎样才能做到这一点?
I'd like to occasionally map new routes to the RouteCollection during program execution long after the Global.asax RegisterRoutes() method had first executed.
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是可能的,但是路由集合在多线程应用程序中是共享状态,因此您必须获得锁。 这里有一个示例。
It's possible, but the route collection is shared state in a multi-threaded app, so you have to get a lock. There's an example here.