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

IAllServicesDiagnostic

Collects all handlers for components in hosting container grouped by services they expose. Within the service group, first one would be the default (the one obtained when callling Resolve for the service type)
using Castle.MicroKernel; using System; using System.Linq; namespace Castle.Windsor.Diagnostics { public interface IAllServicesDiagnostic : IDiagnostic<ILookup<Type, IHandler>> { } }