Ejemplo n.º 1
0
 public static IAsyncResult BeginInvokeMethod(this IInvocableMethodOwnerMirror mirror, ThreadMirror thread, MethodMirror method, IList <Value> arguments, InvokeOptions options, AsyncCallback callback, object state)
 {
     return(BeginInvokeMethod(mirror.VirtualMachine, thread, method, mirror.GetThisObject(), arguments, options, callback, state));
 }
Ejemplo n.º 2
0
 public static Value InvokeMethod(this IInvocableMethodOwnerMirror mirror, ThreadMirror thread, MethodMirror method, IList <Value> arguments, InvokeOptions options = InvokeOptions.None)
 {
     return(InvokeMethod(mirror, mirror.VirtualMachine, thread, method, mirror.GetThisObject(), arguments, options));
 }