8 references to EndpointRoutingMiddleware
Microsoft.AspNetCore.Routing (8)
Builder\EndpointRoutingApplicationBuilderExtensions.cs (4)
61return builder.UseMiddleware<EndpointRoutingMiddleware>(endpointRouteBuilder); 131$"{nameof(EndpointRoutingMiddleware)} matches endpoints setup by {nameof(EndpointMiddleware)} and so must be added to the request " + 133$"Please add {nameof(EndpointRoutingMiddleware)} by calling '{nameof(IApplicationBuilder)}.{nameof(UseRouting)}' inside the call " + 145$"The {nameof(EndpointRoutingMiddleware)} and {nameof(EndpointMiddleware)} must be added to the same {nameof(IApplicationBuilder)} instance. " +
EndpointRoutingMiddleware.cs (3)
36ILogger<EndpointRoutingMiddleware> logger, 86static async Task AwaitMatcher(EndpointRoutingMiddleware middleware, HttpContext httpContext, Task<Matcher> matcherTask) 93static async Task AwaitMatch(EndpointRoutingMiddleware middleware, HttpContext httpContext, Task matchTask)
Matching\Matcher.cs (1)
10/// of the execution of <see cref="EndpointRoutingMiddleware"/>.