297 references to RequestDelegate
Aspire.Dashboard (4)
Microsoft.AspNetCore (8)
Microsoft.AspNetCore.Antiforgery (2)
Microsoft.AspNetCore.Authentication (2)
Microsoft.AspNetCore.Authorization.Policy (7)
Microsoft.AspNetCore.Components.Server (5)
Microsoft.AspNetCore.CookiePolicy (3)
Microsoft.AspNetCore.Cors (4)
Microsoft.AspNetCore.Diagnostics (27)
Microsoft.AspNetCore.Diagnostics.HealthChecks (3)
Microsoft.AspNetCore.Diagnostics.Middleware (10)
Microsoft.AspNetCore.Diagnostics.Middleware.Tests (1)
Microsoft.AspNetCore.HostFiltering (2)
Microsoft.AspNetCore.Hosting (6)
Microsoft.AspNetCore.Http (14)
Microsoft.AspNetCore.Http.Abstractions (37)
Extensions\UseExtensions.cs (4)
15/// If you aren't calling the next function, use <see cref="RunExtensions.Run(IApplicationBuilder, RequestDelegate)"/> instead.
17/// Prefer using <see cref="Use(IApplicationBuilder, Func{HttpContext, RequestDelegate, Task})"/> for better performance as shown below:
43/// If you aren't calling the next function, use <see cref="RunExtensions.Run(IApplicationBuilder, RequestDelegate)"/> instead.
48public static IApplicationBuilder Use(this IApplicationBuilder app, Func<HttpContext, RequestDelegate, Task> middleware)
Microsoft.AspNetCore.Http.Connections (2)
Microsoft.AspNetCore.Http.Extensions (16)
Microsoft.AspNetCore.HttpLogging (4)
Microsoft.AspNetCore.HttpOverrides (8)
Microsoft.AspNetCore.HttpsPolicy (6)
Microsoft.AspNetCore.Identity (10)
Microsoft.AspNetCore.Localization (3)
Microsoft.AspNetCore.Mvc.Core (16)
Microsoft.AspNetCore.Mvc.RazorPages (1)
Microsoft.AspNetCore.OutputCaching (4)
Microsoft.AspNetCore.RateLimiting (3)
Microsoft.AspNetCore.RequestDecompression (2)
Microsoft.AspNetCore.ResponseCaching (4)
Microsoft.AspNetCore.ResponseCompression (2)
Microsoft.AspNetCore.Rewrite (6)
Microsoft.AspNetCore.Routing (48)
RequestDelegateRouteBuilderExtensions.cs (13)
23/// <param name="handler">The <see cref="RequestDelegate"/> route handler.</param>
25public static IRouteBuilder MapRoute(this IRouteBuilder builder, [StringSyntax("Route")] string template, RequestDelegate handler)
60/// <param name="handler">The <see cref="RequestDelegate"/> route handler.</param>
62public static IRouteBuilder MapDelete(this IRouteBuilder builder, [StringSyntax("Route")] string template, RequestDelegate handler)
102/// <param name="handler">The <see cref="RequestDelegate"/> route handler.</param>
104public static IRouteBuilder MapGet(this IRouteBuilder builder, [StringSyntax("Route")] string template, RequestDelegate handler)
144/// <param name="handler">The <see cref="RequestDelegate"/> route handler.</param>
146public static IRouteBuilder MapPost(this IRouteBuilder builder, [StringSyntax("Route")] string template, RequestDelegate handler)
186/// <param name="handler">The <see cref="RequestDelegate"/> route handler.</param>
188public static IRouteBuilder MapPut(this IRouteBuilder builder, [StringSyntax("Route")] string template, RequestDelegate handler)
237RequestDelegate requestDelegate = (httpContext) =>
252/// <param name="handler">The <see cref="RequestDelegate"/> route handler.</param>
258RequestDelegate handler)
Microsoft.AspNetCore.Routing.Abstractions (4)
Microsoft.AspNetCore.Server.IISIntegration (3)
Microsoft.AspNetCore.Session (3)
Microsoft.AspNetCore.StaticAssets (1)
Microsoft.AspNetCore.StaticFiles (9)
Microsoft.AspNetCore.Watch.BrowserRefresh (4)
Microsoft.AspNetCore.WebSockets (2)
Microsoft.DotNet.HotReload.Watch (1)