ComponentRegistration
A non-generic ComponentRegistration<T>.
You can create a new registration with the Component factory.
using System;
namespace Castle.MicroKernel.Registration
{
public class ComponentRegistration : ComponentRegistration<object>
{
public ComponentRegistration(params Type[] serviceTypes)
: base(serviceTypes)
{
}
}
}