Пример #1
0
 public AsyncInvocationT(object proxy, InvocationHandler invocationHandler, MethodInfo method, PropertyInfo property, object[] arguments, Func <Invocation, Task <T> > implementation) : base(proxy, invocationHandler, method, property, arguments)
 {
     this.implementation = implementation;
 }
Пример #2
0
 public VoidInvocation(object proxy, InvocationHandler invocationHandler, MethodInfo method, PropertyInfo property, object[] arguments, Action <Invocation> implementation) : base(proxy, invocationHandler, method, property, arguments)
 {
     this.implementation = implementation;
 }