11 references to EndpointMiddleware
Microsoft.AspNetCore.Routing (11)
Builder\EndpointRoutingApplicationBuilderExtensions.cs (10)
33/// made, and an <see cref="Endpoint"/> is associated with the <see cref="HttpContext"/>. The <see cref="EndpointMiddleware"/> 35/// the <see cref="EndpointRoutingMiddleware"/> and <see cref="EndpointMiddleware"/> may observe or change the 66/// Adds a <see cref="EndpointMiddleware"/> middleware to the specified <see cref="IApplicationBuilder"/> 68/// The <see cref="EndpointMiddleware"/> will execute the <see cref="Endpoint"/> associated with the current 82/// made, and an <see cref="Endpoint"/> is associated with the <see cref="HttpContext"/>. The <see cref="EndpointMiddleware"/> 84/// the <see cref="EndpointRoutingMiddleware"/> and <see cref="EndpointMiddleware"/> may observe or change the 113return builder.UseMiddleware<EndpointMiddleware>(); 134$"{nameof(EndpointRoutingMiddleware)} matches endpoints setup by {nameof(EndpointMiddleware)} and so must be added to the request " + 135$"execution pipeline before {nameof(EndpointMiddleware)}. " + 148$"The {nameof(EndpointRoutingMiddleware)} and {nameof(EndpointMiddleware)} must be added to the same {nameof(IApplicationBuilder)} instance. " +
EndpointMiddleware.cs (1)
24ILogger<EndpointMiddleware> logger,