IModelInterceptorsSelector
Select the appropriate interceptors based on the application specific
business logic
using Castle.Core;
namespace Castle.MicroKernel.Proxy
{
public interface IModelInterceptorsSelector
{
bool HasInterceptors(ComponentModel model);
InterceptorReference[] SelectInterceptors(ComponentModel model, InterceptorReference[] interceptors);
}
}