| Map(IEndpointRouteBuilder, RoutePattern, Delegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP requests
for the specified pattern. | 
        	
	| Map(IEndpointRouteBuilder, RoutePattern, RequestDelegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP requests
for the specified pattern. | 
        	
	| Map(IEndpointRouteBuilder, String, Delegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP requests
for the specified pattern. | 
        	
	| Map(IEndpointRouteBuilder, String, RequestDelegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP requests
for the specified pattern. | 
        	
	| MapDelete(IEndpointRouteBuilder, String, Delegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP DELETE requests
for the specified pattern. | 
        	
	| MapDelete(IEndpointRouteBuilder, String, RequestDelegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP DELETE requests
for the specified pattern. | 
        	
	| MapFallback(IEndpointRouteBuilder, Delegate) | Adds a specialized RouteEndpoint to the IEndpointRouteBuilder that will match
requests for non-file-names with the lowest possible priority. | 
        	
	| MapFallback(IEndpointRouteBuilder, String, Delegate) | Adds a specialized RouteEndpoint to the IEndpointRouteBuilder that will match
the provided pattern with the lowest possible priority. | 
        	
	| MapGet(IEndpointRouteBuilder, String, Delegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP GET requests
for the specified pattern. | 
        	
	| MapGet(IEndpointRouteBuilder, String, RequestDelegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP GET requests
for the specified pattern. | 
        	
	| MapGroup(IEndpointRouteBuilder, RoutePattern) | Creates a RouteGroupBuilder for defining endpoints all prefixed with the specified prefix. | 
        	
	| MapGroup(IEndpointRouteBuilder, String) | Creates a RouteGroupBuilder for defining endpoints all prefixed with the specified prefix. | 
        	
	| MapMethods(IEndpointRouteBuilder, String, IEnumerable<String>, Delegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP requests
for the specified HTTP methods and pattern. | 
        	
	| MapMethods(IEndpointRouteBuilder, String, IEnumerable<String>, RequestDelegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP requests
for the specified HTTP methods and pattern. | 
        	
	| MapPatch(IEndpointRouteBuilder, String, Delegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP PATCH requests
for the specified pattern. | 
        	
	| MapPatch(IEndpointRouteBuilder, String, RequestDelegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP PATCH requests
for the specified pattern. | 
        	
	| MapPost(IEndpointRouteBuilder, String, Delegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP POST requests
for the specified pattern. | 
        	
	| MapPost(IEndpointRouteBuilder, String, RequestDelegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP POST requests
for the specified pattern. | 
        	
	| MapPut(IEndpointRouteBuilder, String, Delegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP PUT requests
for the specified pattern. | 
        	
	| MapPut(IEndpointRouteBuilder, String, RequestDelegate) | Adds a RouteEndpoint to the IEndpointRouteBuilder that matches HTTP PUT requests
for the specified pattern. |