ResolveRequest Constructor |
Namespace:
Autofac
Assembly:
Autofac (in Autofac.dll) Version: 6.0.0+39696a967e8826f7f1ebc8c1ff4523c9dd75abe0
Syntax public ResolveRequest(
Service service,
ServiceRegistration serviceRegistration,
IEnumerable<Parameter> parameters,
IComponentRegistration decoratorTarget = null
)
Public Sub New (
service As Service,
serviceRegistration As ServiceRegistration,
parameters As IEnumerable(Of Parameter),
Optional decoratorTarget As IComponentRegistration = Nothing
)
Parameters
- service
- Type: Autofac.CoreService
The service being resolved. - serviceRegistration
- Type: Autofac.CoreServiceRegistration
The component registration for the service. - parameters
- Type: System.Collections.GenericIEnumerableParameter
The parameters used when resolving the service. - decoratorTarget (Optional)
- Type: Autofac.CoreIComponentRegistration
The target component to be decorated.
See Also