Assembly: System;
The IJsonObject interface is used to work with an object in JSON structure.
IJsonObject
An object in JSON structure is a set of elements that have specific name and value. An element value can be a single object, array, or fixed value of particular type.
Property name | Brief description | |
Contains | The Contains property returns whether there is an element with the specified name. | |
Count | The Count property returns the number of object's child elements. | |
Item | The Item property returns the element with the specified name. | |
ItemByIndex | The ItemByIndex property returns the element with the specified index. | |
Property_ | The Property_ property returns the name of the element with the specified index. |
Property name | Brief description | |
AsArray | The AsArray property returns the element as an array. | |
AsBoolean | The AsBoolean property returns the element as a logical value. | |
AsDouble | The AsDouble property returns the element as a real value. | |
AsInteger | The AsInteger property returns the element as an integer value. | |
AsObject | The AsObject property returns the element as an object. | |
AsString | The AsString property returns the element as a string value. | |
GetType | The GetType property returns the element type. |
Method name | Brief description | |
Query | The Query method returns the array of elements obtained by executing a JSONPath query. | |
WriteToStream | The WriteToStream method writes the current element to stream. | |
WriteToString | The WriteToString method returns the element string view. |
See also: