Enterra.V8x1C.DOM.BaseObject.InvokeV8Method C# (CSharp) Method

InvokeV8Method() static private method

Invoke method
static private InvokeV8Method ( object target, string name, object args ) : object
target object
name string
args object
return object
        internal static object InvokeV8Method(object target, string name, object[] args)
        {
            try
            {
                return target.GetType().InvokeMember(
                    name,
                    BindingFlags.Public | BindingFlags.InvokeMethod,
                    null,
                    target, args
                    );
            }
            catch (TargetInvocationException exc)
            {
                throw exc.InnerException;
            }
        }

Same methods

BaseObject::InvokeV8Method ( string name ) : object