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)); }
internal MethodBodyMirror(VirtualMachine vm, MethodMirror method, byte[] il) : base(vm, 0) { this.method = method; this.il = il; }
public Value InvokeMethod(ThreadMirror thread, MethodMirror method, IList <Value> arguments, InvokeOptions options) { return(ObjectMirror.InvokeMethod(vm, thread, method, this, arguments, options)); }