/// <summary> /// Asynchronously invoke the method of an a given object /// </summary> public Eval AsyncInvoke(Value objectInstance, Value[] arguments) { return(Eval.AsyncInvokeMethod( this, this.IsStatic ? null : objectInstance, arguments ?? new Value[0] )); }