1 implementation of IControllerPropertyActivator
Microsoft.AspNetCore.Mvc.Core (1)
Controllers\DefaultControllerPropertyActivator.cs (1)
11
internal sealed class DefaultControllerPropertyActivator :
IControllerPropertyActivator
8 references to IControllerPropertyActivator
Microsoft.AspNetCore.Mvc.Core (8)
Controllers\ControllerFactoryProvider.cs (3)
15
private readonly
IControllerPropertyActivator
[] _propertyActivators;
20
IEnumerable<
IControllerPropertyActivator
> propertyActivators)
120
var
activatorProvider = _propertyActivators[i];
Controllers\DefaultControllerFactory.cs (4)
15
private readonly
IControllerPropertyActivator
[] _propertyActivators;
24
/// A set of <see cref="
IControllerPropertyActivator
"/> instances used to initialize controller
29
IEnumerable<
IControllerPropertyActivator
> propertyActivators)
51
foreach (
var
propertyActivator in _propertyActivators)
DependencyInjection\MvcCoreServiceCollectionExtensions.cs (1)
181
ServiceDescriptor.Transient<
IControllerPropertyActivator
, DefaultControllerPropertyActivator>());