Rhino.WrapFactory.IsJavaPrimitiveWrap C# (CSharp) Method

IsJavaPrimitiveWrap() public method

Return false if result of Java method, which is instance of String, Number, Boolean and Character, should be used directly as JavaScript primitive type.
Return false if result of Java method, which is instance of String, Number, Boolean and Character, should be used directly as JavaScript primitive type. By default the method returns true to indicate that instances of String, Number, Boolean and Character should be wrapped as any other Java object and scripts can access any Java method available in these objects. Use SetJavaPrimitiveWrap(bool) to change this.
public IsJavaPrimitiveWrap ( ) : bool
return bool
		public bool IsJavaPrimitiveWrap()
		{
			return javaPrimitiveWrap;
		}