1 implementation of IRequestDelegateFactory
Microsoft.AspNetCore.Mvc.Core (1)
Routing\ControllerRequestDelegateFactory.cs (1)
17internal sealed class ControllerRequestDelegateFactory : IRequestDelegateFactory
4 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)