Rhino.ScriptRuntime.NewObjectLiteral C# (CSharp) Method

NewObjectLiteral() private method

private NewObjectLiteral ( object propertyIds, object propertyValues, Context cx, Scriptable scope ) : Scriptable
propertyIds object
propertyValues object
cx Context
scope Scriptable
return Scriptable
		public static Scriptable NewObjectLiteral(object[] propertyIds, object[] propertyValues, Context cx, Scriptable scope)
		{
			// Passing null for getterSetters means no getters or setters
			return NewObjectLiteral(propertyIds, propertyValues, null, cx, scope);
		}

Same methods

ScriptRuntime::NewObjectLiteral ( object propertyIds, object propertyValues, int getterSetters, Context cx, Scriptable scope ) : Scriptable
ScriptRuntime