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