JSONObject.JSONObject C# (CSharp) Method

JSONObject() public method

public JSONObject ( string str, int maxDepth = -2, bool storeExcessLevels = false, bool strict = false ) : System.Diagnostics
str string
maxDepth int
storeExcessLevels bool
strict bool
return System.Diagnostics
	public JSONObject(string str, int maxDepth = -2, bool storeExcessLevels = false, bool strict = false)
	{   //create a new JSONObject from a string (this will also create any children, and parse the whole string)
		Parse(str, maxDepth, storeExcessLevels, strict);
	}
	void Parse(string str, int maxDepth = -2, bool storeExcessLevels = false, bool strict = false)

Same methods

JSONObject::JSONObject ( ) : System.Diagnostics
JSONObject::JSONObject ( AddJSONConents content ) : System.Diagnostics
JSONObject::JSONObject ( JSONObject>.Dictionary dic ) : System.Diagnostics
JSONObject::JSONObject ( string>.Dictionary dic ) : System.Diagnostics
JSONObject::JSONObject ( JSONObject, objs ) : System.Diagnostics
JSONObject::JSONObject ( Type t ) : System.Diagnostics
JSONObject::JSONObject ( bool b ) : System.Diagnostics
JSONObject::JSONObject ( double d ) : System.Diagnostics
JSONObject::JSONObject ( float f ) : System.Diagnostics