BasedOnDescriptor
Describes how to register a group of related types.
Gets the service descriptor.
Allows a type to be registered multiple times.
Returns the descriptor for accepting a new type.
Returns the descriptor for accepting a new type.
Allows customized configurations of each matching type.
public BasedOnDescriptor ConfigureFor<TComponentImplementationType>(Action<ComponentRegistration> configurer)
Allows customized configurations of each matching component with implementation type that is
assignable to
TComponentImplementationType
.
public BasedOnDescriptor ConfigureIf(Predicate<ComponentRegistration> condition, Action<ComponentRegistration> configurer)
Allows customized configurations of each matching component that satisfies supplied condition.
public BasedOnDescriptor ConfigureIf(Predicate<ComponentRegistration> condition, Action<ComponentRegistration> configurerWhenTrue, Action<ComponentRegistration> configurerWhenFalse)
Allows customized configurations of each matching component that satisfies supplied condition and alternative configuration for the rest of components.
Assigns a conditional predication which must be satisfied.
Sets component lifestyle to scoped per component TBaseForRoot.
Sets component lifestyle to scoped per nearest component on the resolution stack where implementation type is assignable to TBaseForRoot .
Sets component lifestyle to specified one.
public BasedOnDescriptor LifestyleCustom<TLifestyleManager>() where TLifestyleManager : ILifestyleManager
Sets component lifestyle to specified one.
Sets component lifestyle to per thread.
Sets component lifestyle to instance per web request.
Sets component lifestyle to pooled. If initialSize or maxSize are not set default values will be used.
Sets component lifestyle to scoped per explicit scope.
Sets component lifestyle to scoped per explicit scope.
Sets component lifestyle to scoped per explicit scope.
Sets component lifestyle to singleton.
Sets component lifestyle to transient.
Adds another type to be accepted as base.
Assigns a conditional predication which must not be satisfied.
Returns the descriptor for accepting a type based on a condition.
Uses all interfaces implemented by the type (or its base types) as well as their base interfaces.
Uses the base type matched on.
Uses all interfaces that have names matched by implementation type name.
Matches Foo to IFoo, SuperFooExtended to IFoo and IFooExtended etc
Uses the first interface of a type. This method has non-deterministic behavior when type implements more than one interface!
Uses implements to lookup the sub interface.
For example: if you have IService and
IProductService : ISomeInterface, IService, ISomeOtherInterface.
When you call FromInterface(typeof(IService)) then IProductService
will be used. Useful when you want to register _all_ your services
and but not want to specify all of them.
Uses base type to lookup the sub interface.
Assigns the supplied service types.
Assigns the supplied service types.
Assigns a custom service selection strategy.
Uses the type itself.