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

BoundToAttribute

public sealed class BoundToAttribute : LifestyleAttribute
Indicates that the target components wants instance lifetime and reuse scope to be bound to another component further up the object graph. Good scenario for this would be unit of work bound to a presenter in a two tier MVP application. The ScopeRootBinderType attribute must point to a type having default accessible constructor and public method matching signature of Func<IHandler[], IHandler> delegate.
public Type ScopeRootBinderType { get; }

type having default accessible constructor and public method matching signature of Func<IHandler[], IHandler> delegate. The method will be used to pick IHandler of the component current instance should be bound to.

public BoundToAttribute(Type scopeRootBinderType)

Initializes a new instance of the BoundToAttribute class.