示例#1
0
 public IAsyncResult BeginInvokeMethod(ThreadMirror thread, MethodMirror method, IList <Value> arguments, InvokeOptions options, AsyncCallback callback, object state)
 {
     return(ObjectMirror.BeginInvokeMethod(vm, thread, method, this, arguments, options, callback, state));
 }
示例#2
0
 public Value InvokeMethod(ThreadMirror thread, MethodMirror method, IList <Value> arguments, InvokeOptions options)
 {
     return(ObjectMirror.InvokeMethod(vm, thread, method, this, arguments, options));
 }