DelegateActivator Constructor |
Namespace:
Autofac.Core.Activators.Delegate
Assembly:
Autofac (in Autofac.dll) Version: 6.0.0+39696a967e8826f7f1ebc8c1ff4523c9dd75abe0
Syntax public DelegateActivator(
Type limitType,
Func<IComponentContext, IEnumerable<Parameter>, Object> activationFunction
)
Public Sub New (
limitType As Type,
activationFunction As Func(Of IComponentContext, IEnumerable(Of Parameter), Object)
)
Parameters
- limitType
- Type: SystemType
The most specific type to which activated instances can be cast. - activationFunction
- Type: SystemFuncIComponentContext, IEnumerableParameter, Object
Activation delegate.
See Also