Select from following answers:- Add route.IgnoreRoute(“Product/”); to the RegisterRoute method.

- Add route.Remove(“Product/”); to the RegisterRoute method.
- Add route.SetItem(route.Count, “Product/”); to the RegisterRoute method
- All Above
Remove removes a route from the routing table, where SetItem adds an item to the collection.So, IgnoreRoute is the correct statement to achieve this goal.
Show Correct Answer
|
Alert Moderator