Reputation: 57323
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?
Upvotes: 2
Views: 568
Reputation: 126547
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.
Upvotes: 4