Rhino.InterpretedFunction.CreateFunction C# (CSharp) Method

CreateFunction() static private method

Create function embedded in script or another function.
Create function embedded in script or another function.
static private CreateFunction ( Context cx, Scriptable scope, Rhino parent, int index ) : InterpretedFunction
cx Context
scope Scriptable
parent Rhino
index int
return InterpretedFunction
		internal static Rhino.InterpretedFunction CreateFunction(Context cx, Scriptable scope, Rhino.InterpretedFunction parent, int index)
		{
			Rhino.InterpretedFunction f = new Rhino.InterpretedFunction(parent, index);
			f.InitScriptFunction(cx, scope);
			return f;
		}

Same methods

InterpretedFunction::CreateFunction ( Context cx, Scriptable scope, InterpreterData idata, object staticSecurityDomain ) : InterpretedFunction