13 references to EndpointRoutingMiddleware
Microsoft.AspNetCore.Routing (13)
Builder\EndpointRoutingApplicationBuilderExtensions.cs (9)
21
/// Adds a <see cref="
EndpointRoutingMiddleware
"/> middleware to the specified <see cref="IApplicationBuilder"/>.
32
/// The <see cref="
EndpointRoutingMiddleware
"/> defines a point in the middleware pipeline where routing decisions are
35
/// the <see cref="
EndpointRoutingMiddleware
"/> and <see cref="EndpointMiddleware"/> may observe or change the
62
return builder.UseMiddleware<
EndpointRoutingMiddleware
>(endpointRouteBuilder);
81
/// The <see cref="
EndpointRoutingMiddleware
"/> defines a point in the middleware pipeline where routing decisions are
84
/// the <see cref="
EndpointRoutingMiddleware
"/> and <see cref="EndpointMiddleware"/> may observe or change the
134
$"{nameof(
EndpointRoutingMiddleware
)} matches endpoints setup by {nameof(EndpointMiddleware)} and so must be added to the request " +
136
$"Please add {nameof(
EndpointRoutingMiddleware
)} by calling '{nameof(IApplicationBuilder)}.{nameof(UseRouting)}' inside the call " +
148
$"The {nameof(
EndpointRoutingMiddleware
)} and {nameof(EndpointMiddleware)} must be added to the same {nameof(IApplicationBuilder)} instance. " +
EndpointRoutingMiddleware.cs (3)
36
ILogger<
EndpointRoutingMiddleware
> logger,
86
static async Task AwaitMatcher(
EndpointRoutingMiddleware
middleware, HttpContext httpContext, Task<Matcher> matcherTask)
93
static async Task AwaitMatch(
EndpointRoutingMiddleware
middleware, HttpContext httpContext, Task matchTask)
Matching\Matcher.cs (1)
10
/// of the execution of <see cref="
EndpointRoutingMiddleware
"/>.