public ScriptException(NHtmlUnit.InteractivePage page, System.Exception throwable, string scriptSourceCode)
     : this(new com.gargoylesoftware.htmlunit.ScriptException((com.gargoylesoftware.htmlunit.InteractivePage)page.WrappedObject, throwable, scriptSourceCode))
 {
 }
Ejemplo n.º 2
0
// Generating method code for callFunction
        public virtual object CallFunction(NHtmlUnit.InteractivePage page, net.sourceforge.htmlunit.corejs.javascript.Function function, net.sourceforge.htmlunit.corejs.javascript.Scriptable scope, net.sourceforge.htmlunit.corejs.javascript.Scriptable thisObject, System.Object[] args)
        {
            var arg = WObj.callFunction((com.gargoylesoftware.htmlunit.InteractivePage)page.WrappedObject, function, scope, thisObject, args);

            return(ObjectWrapper.CreateWrapper <object>(arg));
        }
Ejemplo n.º 3
0
// Generating method code for compile
        public virtual net.sourceforge.htmlunit.corejs.javascript.Script Compile(NHtmlUnit.InteractivePage owningPage, net.sourceforge.htmlunit.corejs.javascript.Scriptable scope, string sourceCode, string sourceName, int startLine)
        {
            return(WObj.compile((com.gargoylesoftware.htmlunit.InteractivePage)owningPage.WrappedObject, scope, sourceCode, sourceName, startLine));
        }
Ejemplo n.º 4
0
// Generating method code for execute
        public virtual object Execute(NHtmlUnit.InteractivePage page, net.sourceforge.htmlunit.corejs.javascript.Scriptable scope, net.sourceforge.htmlunit.corejs.javascript.Script script)
        {
            var arg = WObj.execute((com.gargoylesoftware.htmlunit.InteractivePage)page.WrappedObject, scope, script);

            return(ObjectWrapper.CreateWrapper <object>(arg));
        }
Ejemplo n.º 5
0
// Generating method code for execute
        public virtual object Execute(NHtmlUnit.InteractivePage page, string sourceCode, string sourceName, int startLine)
        {
            var arg = WObj.execute((com.gargoylesoftware.htmlunit.InteractivePage)page.WrappedObject, sourceCode, sourceName, startLine);

            return(ObjectWrapper.CreateWrapper <object>(arg));
        }