I am having 1 interface from where user can create end points like below :
/Customer/{Customer}/Address
/Customer/{Customer}/Address/{Address}
As i understand that routing is added to routing table at the start of application i.e when Application_Start event of global.asax is fired.
Now when user will add this routes is it possible to add this routes to routingtable without restarting application.
When user will add those end points and try to call those end points when my application is running they should be able to call those end points and those end points will be responsible to return some responses.
So is this possible??