2 implementations of IRequestDelegateFactory
Microsoft.AspNetCore.Mvc.Core (1)
Routing\ControllerRequestDelegateFactory.cs (1)
17internal sealed class ControllerRequestDelegateFactory : IRequestDelegateFactory
Microsoft.AspNetCore.Mvc.RazorPages (1)
Infrastructure\PageRequestDelegateFactory.cs (1)
18internal sealed class PageRequestDelegateFactory : IRequestDelegateFactory
5 references to IRequestDelegateFactory
Microsoft.AspNetCore.Mvc.Core (4)
DependencyInjection\MvcCoreServiceCollectionExtensions.cs (1)
264services.TryAddEnumerable(ServiceDescriptor.Singleton<IRequestDelegateFactory, ControllerRequestDelegateFactory>());
Routing\ActionEndpointFactory.cs (3)
23private readonly IRequestDelegateFactory[] _requestDelegateFactories; 27IEnumerable<IRequestDelegateFactory> requestDelegateFactories, 502foreach (var factory in _requestDelegateFactories)
Microsoft.AspNetCore.Mvc.RazorPages (1)
DependencyInjection\MvcRazorPagesMvcCoreBuilderExtensions.cs (1)
130ServiceDescriptor.Singleton<IRequestDelegateFactory, PageRequestDelegateFactory>());