JSON Parser Xojo plugin

JSONObject.Walk Method

Calls the given delegate routine for each element in the JSONObject.

Walk(
   walkRoutine as WalkJSONObjectDelegate)

Parameters

walkRoutine
The method that will be called for each element of the JSONObject.

Remarks

Deleting from the JSONObject during walk iteration is not safe. If you need to delete during iteration then use the slower WalkSafe method.

Other way to iterate through the JSONobject is to use the CreateIterator functions.

See Also

JSONObject Class