Castle.DynamicProxy.Internal.CompositionInvocation
namespace Castle.DynamicProxy.Internal
{
public abstract class CompositionInvocation : AbstractInvocation
{
protected object target;
protected CompositionInvocation(object target, object proxy, IInterceptor[] interceptors, MethodInfo proxiedMethod, object[] arguments);
protected void EnsureValidProxyTarget(object newTarget);
protected void EnsureValidTarget();
}
}