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

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); } }