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