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

ILazyComponentLoader

public interface ILazyComponentLoader
Provides lazy registration capabilities to the container.
using Castle.MicroKernel.Registration; using System; namespace Castle.MicroKernel.Resolvers { public interface ILazyComponentLoader { IRegistration Load(string name, Type service, Arguments arguments); } }