IHandlerFactory
Extension point to allow the developer
to use his implementation of IHandler
using Castle.Core;
using System;
namespace Castle.MicroKernel
{
public interface IHandlerFactory
{
IHandler Create(ComponentModel model);
IHandler CreateForwarding(IHandler target, Type forwardedType);
}
}