9 writes to RequestDelegate
Microsoft.AspNetCore.Components.Endpoints (1)
Builder\RazorComponentEndpointFactory.cs (1)
54builder.RequestDelegate = static httpContext =>
Microsoft.AspNetCore.Components.Server (2)
Builder\ServerRazorComponentsEndpointConventionBuilderExtensions.cs (1)
56b.RequestDelegate = async context =>
DependencyInjection\ServerRazorComponentsBuilderExtensions.cs (1)
106c.RequestDelegate = builder.Build();
Microsoft.AspNetCore.Http.Extensions (1)
RequestDelegateFactory.cs (1)
300endpointBuilder.RequestDelegate = finalRequestDelegate;
Microsoft.AspNetCore.Mvc.Core (1)
Routing\ActionEndpointFactory.cs (1)
64RequestDelegate = _requestDelegate,
Microsoft.AspNetCore.Routing (2)
RouteEndpointBuilder.cs (1)
42RequestDelegate = requestDelegate;
RouteEndpointDataSource.cs (1)
268builder.RequestDelegate = conventionOverriddenRequestDelegate ?? factoryCreatedRequestDelegate;
Microsoft.AspNetCore.StaticAssets (2)
Development\StaticAssetDevelopmentRuntimeHandler.cs (1)
56builder.RequestDelegate = async context =>
StaticAssetEndpointFactory.cs (1)
46routeEndpointBuilder.RequestDelegate = invoker.Invoke;
11 references to RequestDelegate
Microsoft.AspNetCore.Components.Server (2)
Builder\ServerRazorComponentsEndpointConventionBuilderExtensions.cs (1)
55var original = b.RequestDelegate;
DependencyInjection\ServerRazorComponentsBuilderExtensions.cs (1)
92var originalDelegate = c.RequestDelegate;
Microsoft.AspNetCore.Http.Extensions (2)
RequestDelegateFactoryOptions.cs (2)
39/// The <see cref="EndpointBuilder.RequestDelegate"/> must be <see langword="null"/>. After the call to <see cref="RequestDelegateFactory.Create(Delegate, RequestDelegateFactoryOptions?)"/>, 40/// <see cref="EndpointBuilder.RequestDelegate"/> will be the same as <see cref="RequestDelegateResult.RequestDelegate"/>.
Microsoft.AspNetCore.Mvc.Core (1)
Routing\InertEndpointBuilder.cs (1)
13return new Endpoint(RequestDelegate, new EndpointMetadataCollection(Metadata), DisplayName);
Microsoft.AspNetCore.Routing (5)
RouteEndpointBuilder.cs (3)
50if (RequestDelegate is null) 52throw new InvalidOperationException($"{nameof(RequestDelegate)} must be specified to construct a {nameof(RouteEndpoint)}."); 56RequestDelegate,
RouteEndpointDataSource.cs (2)
253var conventionOverriddenRequestDelegate = ReferenceEquals(builder.RequestDelegate, redirectRequestDelegate) ? null : builder.RequestDelegate;
Microsoft.AspNetCore.StaticAssets (1)
Development\StaticAssetDevelopmentRuntimeHandler.cs (1)
39var original = builder.RequestDelegate!;