IChangeProxyTarget
Exposes means to change target objects of proxies and invocations
namespace Castle.DynamicProxy
{
public interface IChangeProxyTarget
{
void ChangeInvocationTarget(object target);
void ChangeProxyTarget(object target);
}
}