Created
May 7, 2019 13:33
-
-
Save rsoeteman/ef6d61d88ef094a7d5d9e6ebf701e545 to your computer and use it in GitHub Desktop.
List all routes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@foreach (var route in RouteTable.Routes.OfType<Route>()) | |
{ | |
var r = (Route)route; | |
<div>@r.Url</div> | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment