Ejemplo n.º 1
0
 internal BypassInvocation(
     Type declaringType,
     object target,
     MethodInfo method,
     InvocationArguments arguments)
     : base(
         arguments,
         method,
         declaringType,
         target.GetType(),
         null,
         target)
 {
 }
Ejemplo n.º 2
0
 internal BypassInvocation(
     Type declaringType,
     object target,
     string methodName,
     InvocationArguments arguments)
     : base(
         arguments,
         declaringType.GetMethod(methodName),
         declaringType,
         target.GetType(),
         null,
         target)
 {
 }