Castle.MicroKernel.Registration.Interceptor.InterceptorGroup<S>
namespace Castle.MicroKernel.Registration.Interceptor
{
public class InterceptorGroup<S> : RegistrationGroup<S> where S : class
{
public ComponentRegistration<S> Anywhere { get; }
public ComponentRegistration<S> First { get; }
public ComponentRegistration<S> Last { get; }
public InterceptorGroup(ComponentRegistration<S> registration, InterceptorReference[] interceptors);
public ComponentRegistration<S> AtIndex(int index);
public InterceptorGroup<S> SelectedWith(IInterceptorSelector selector);
}
}