internal DynamicInterceptorManager(
        IDynamicInterceptorCollection interceptors, 
        ITargetInvocationFactory targetInvocationFactory,
        IInvocationFactory invocationFactory,
        ITypeInformation typeInformation)
    {
        this.targetInvocationFactory = targetInvocationFactory;
        this.invocationFactory = invocationFactory;
        this.typeInformation = typeInformation;
        this.interceptors = interceptors;

        this.implementationMethodTarget = null;
    }
Exemplo n.º 2
0
    internal DynamicInterceptorManager(
        IDynamicInterceptorCollection interceptors,
        ITargetInvocationFactory targetInvocationFactory,
        IInvocationFactory invocationFactory,
        ITypeInformation typeInformation)
    {
        this.targetInvocationFactory = targetInvocationFactory;
        this.invocationFactory       = invocationFactory;
        this.typeInformation         = typeInformation;
        this.interceptors            = interceptors;

        this.implementationMethodTarget = null;
    }
 public DynamicInterceptorManager(IDynamicInterceptorCollection interceptors)
     : this(interceptors, new TargetInvocationFactory(), new InvocationFactory(), new TypeInformation())
 {
 }
Exemplo n.º 4
0
 public DynamicInterceptorManager(IDynamicInterceptorCollection interceptors)
     : this(interceptors, new TargetInvocationFactory(), new InvocationFactory(), new TypeInformation())
 {
 }