Assembly: System;
The IJsonObjectBuilder interface is used to create a new JSON object.
IJsonObjectBuilder
To create a new JSON object, create an instance of the JsonObjectBuilder class and cast it to the IJsonObjectBuilder interface.
Method name | Brief description | |
AddArray | The AddArray method adds an element with a values array. | |
AddArrayBuilder | The AddArrayBuilder method adds an element with JSON array as a value. | |
AddBoolean | The AddBoolean method adds an element with a logical value. | |
AddDouble | The AddDouble method adds an element with a real value. | |
AddElement | The AddElement method adds an element with another element as a value. | |
AddInteger | The AddInteger method adds an element with integer value. | |
AddNull | The AddNull method adds en element with an empty value. | |
AddObjectBuilder | The AddObjectBuilder method adds an element with JSON object as a value. | |
AddString | The AddString method adds an element with a string value. | |
Build | The Build method returns the created JSON object. |
See also: