3 overrides of FilterAsync
Microsoft.AspNetCore.Mvc.Core.Test (1)
Routing\DynamicControllerEndpointMatcherPolicyTest.cs (1)
456
public override ValueTask<IReadOnlyList<Endpoint>>
FilterAsync
(HttpContext httpContext, RouteValueDictionary values, IReadOnlyList<Endpoint> endpoints)
Microsoft.AspNetCore.Mvc.RazorPages.Test (1)
Infrastructure\DynamicPageEndpointMatcherPolicyTest.cs (1)
451
public override ValueTask<IReadOnlyList<Endpoint>>
FilterAsync
(HttpContext httpContext, RouteValueDictionary values, IReadOnlyList<Endpoint> endpoints)
Mvc.RoutingWebSite (1)
StartupForDynamic.cs (1)
65
public override ValueTask<IReadOnlyList<Endpoint>>
FilterAsync
(HttpContext httpContext, RouteValueDictionary values, IReadOnlyList<Endpoint> endpoints)
7 references to FilterAsync
Microsoft.AspNetCore.Mvc.Core (5)
Routing\DynamicControllerEndpointMatcherPolicy.cs (1)
146
endpoints = await transformer.
FilterAsync
(httpContext, values, endpoints);
Routing\DynamicRouteValueTransformer.cs (4)
23
/// <see cref="
FilterAsync
(HttpContext, RouteValueDictionary, IReadOnlyList{Endpoint})" /> as well as
33
/// <item><description><see cref="
FilterAsync
(HttpContext, RouteValueDictionary, IReadOnlyList{Endpoint})" /></description></item>
77
/// Implementations of <see cref="
FilterAsync
(HttpContext, RouteValueDictionary, IReadOnlyList{Endpoint})" /> may further
82
/// <see cref="
FilterAsync
(HttpContext, RouteValueDictionary, IReadOnlyList{Endpoint})" /> will not be called in the case
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\DynamicPageEndpointMatcherPolicy.cs (1)
145
endpoints = await transformer.
FilterAsync
(httpContext, values, endpoints);
Mvc.RoutingWebSite (1)
StartupForDynamic.cs (1)
73
return base.
FilterAsync
(httpContext, values, endpoints);