コード例 #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));
 }
コード例 #2
0
ファイル: StructMirror.cs プロジェクト: zzwwqqq/mono
 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));
 }