Click or drag to resize

ServiceImplementationDataImplementationResolver Property

Gets or sets a mechanism that allows the AutofacInstanceContext to get the actual implementation for a service.

Namespace:  Autofac.Integration.Wcf
Assembly:  Autofac.Integration.Wcf (in Autofac.Integration.Wcf.dll) Version: 6.0.0+691de191498a27e1db2c331d318e19150e41288c
Syntax
public Func<ILifetimeScope, Object> ImplementationResolver { get; set; }

Property Value

Type: FuncILifetimeScope, Object
An FuncT, TResult that takes in a lifetime scope returns an Object that is the implementation type for the given service. This is the object that the service host will use and should be assignable from the ServiceTypeToHost.
See Also