我可以将新路线映射到 Global.asax 之外的 RouteCollection 吗?

发布于 2024-07-30 00:30:50 字数 108 浏览 5 评论 0原文

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

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

发布评论

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

评论(1

巡山小妖精 2024-08-06 00:30:50

这是可能的,但是路由集合在多线程应用程序中是共享状态,因此您必须获得锁。 这里有一个示例

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.

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