Rhino.Delegator.Call C# (CSharp) Method

Call() public method

public Call ( Context cx, Scriptable scope, Scriptable thisObj, object args ) : object
cx Context
scope Scriptable
thisObj Scriptable
args object
return object
		public virtual object Call(Context cx, Scriptable scope, Scriptable thisObj, object[] args)
		{
			return ((Function)obj).Call(cx, scope, thisObj, args);
		}