Click or drag to resize

ReflectionActivator Constructor

Initializes a new instance of the ReflectionActivator class.

Namespace:  Autofac.Core.Activators.Reflection
Assembly:  Autofac (in Autofac.dll) Version: 6.0.0+39696a967e8826f7f1ebc8c1ff4523c9dd75abe0
Syntax
public ReflectionActivator(
	Type implementationType,
	IConstructorFinder constructorFinder,
	IConstructorSelector constructorSelector,
	IEnumerable<Parameter> configuredParameters,
	IEnumerable<Parameter> configuredProperties
)

Parameters

implementationType
Type: SystemType
Type to activate.
constructorFinder
Type: Autofac.Core.Activators.ReflectionIConstructorFinder
Constructor finder.
constructorSelector
Type: Autofac.Core.Activators.ReflectionIConstructorSelector
Constructor selector.
configuredParameters
Type: System.Collections.GenericIEnumerableParameter
Parameters configured explicitly for this instance.
configuredProperties
Type: System.Collections.GenericIEnumerableParameter
Properties configured explicitly for this instance.
See Also