public Task <Value> InvokeMethodAsync(ThreadMirror thread, MethodMirror method, IList <Value> arguments, InvokeOptions options = InvokeOptions.None)
 {
     return(ObjectMirror.InvokeMethodAsync(vm, thread, method, null, arguments, options));
 }
Esempio 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));
 }