<PackageReference Include="Castle.Windsor" Version="3.3.0" />

BasedOnDescriptor

Describes how to register a group of related types.

Gets the service descriptor.

protected virtual bool Accepts(Type type, out Type baseTypes)

Allows a type to be registered multiple times.

Returns the descriptor for accepting a new type.

public BasedOnDescriptor BasedOn(Type basedOn)

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 .

Allows customized configurations of each matching component that satisfies supplied condition.

Allows customized configurations of each matching component that satisfies supplied condition and alternative configuration for the rest of components.

protected bool ExecuteIfCondition(Type type)

protected bool ExecuteUnlessCondition(Type type)

public BasedOnDescriptor If(Predicate<Type> ifFilter)

Assigns a conditional predication which must be satisfied.

protected bool IsBasedOn(Type type, out Type baseTypes)

public BasedOnDescriptor LifestyleBoundTo<TBaseForRoot>()

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 .

public BasedOnDescriptor LifestyleCustom(Type customLifestyleType)

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.

public BasedOnDescriptor LifestylePooled(int? initialSize = default, int? maxSize = default)

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.

public BasedOnDescriptor LifestyleScoped(Type scopeAccessorType)

Sets component lifestyle to scoped per explicit scope.

public BasedOnDescriptor LifestyleScoped<TScopeAccessor>() where TScopeAccessor : IScopeAccessor

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.

public BasedOnDescriptor Unless(Predicate<Type> unlessFilter)

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.