1 write to RequestDelegate
Microsoft.AspNetCore.Http.Abstractions (1)
Routing\Endpoint.cs (1)
30RequestDelegate = requestDelegate;
12 references to RequestDelegate
Microsoft.AspNetCore.Components.Server (1)
DependencyInjection\ServerRazorComponentsBuilderExtensions.cs (1)
151var builder = new RouteEndpointBuilder(endpoint.RequestDelegate, routeEndpoint.RoutePattern, routeEndpoint.Order);
Microsoft.AspNetCore.Http (1)
Builder\ApplicationBuilder.cs (1)
171var endpointRequestDelegate = endpoint?.RequestDelegate;
Microsoft.AspNetCore.Routing (7)
EndpointDataSource.cs (1)
55var routeEndpointBuilder = new RouteEndpointBuilder(routeEndpoint.RequestDelegate, fullRoutePattern, routeEndpoint.Order)
EndpointMiddleware.cs (3)
60if (endpoint.RequestDelegate is not null) 65return endpoint.RequestDelegate(httpContext); 72var requestTask = endpoint.RequestDelegate(httpContext);
EndpointRoutingMiddleware.cs (3)
186if (endpoint.RequestDelegate is not null) 191return endpoint.RequestDelegate(httpContext); 198var requestTask = endpoint.RequestDelegate(httpContext);
Microsoft.AspNetCore.StaticFiles (3)
DefaultFilesMiddleware.cs (1)
51if (context.GetEndpoint()?.RequestDelegate is null
DirectoryBrowserMiddleware.cs (1)
64if (context.GetEndpoint()?.RequestDelegate is null
StaticFileMiddleware.cs (1)
86private static bool ValidateNoEndpointDelegate(HttpContext context) => context.GetEndpoint()?.RequestDelegate is null;