Exemplo n.º 1
0
 public Task <Value> InvokeMethodAsync(ThreadMirror thread, MethodMirror method, IList <Value> arguments, InvokeOptions options = InvokeOptions.None)
 {
     return(ObjectMirror.InvokeMethodAsync(vm, thread, method, null, arguments, options));
 }
Exemplo n.º 2
0
 public Task <InvokeResult> InvokeMethodAsyncWithResult(ThreadMirror thread, MethodMirror method, IList <Value> arguments, InvokeOptions options = InvokeOptions.None)
 {
     return(ObjectMirror.InvokeMethodAsync(vm, thread, method, this, arguments, options, EndInvokeMethodWithResult));
 }