Begin reading a JSON array.
MCO_RET mcorest_api_json_read_array_begin( mcorest_api_json_read_ctx_t *ctx );
| ctx | Pointer to the JSON read context structure |
This function begins reading a JSON array.
| MCO_S_OK = 0 | Success |
| MCO_E_REST_* | Any of the Web Services Error Codes |
mcorest_api_json_read_ctx_t jctx;
MCOREST_API_JSON_TKN_TYPE tkn_type;
...
if (MCO_S_OK == mcorest_api_json_next_token(&jctx, MCOREST_API_JSON_TKN_ARRAY_BGN, &tkn_type))
{
if (MCO_S_OK == mcorest_api_json_read_array_begin(&jctx))
{
/* Read array elements one by one */
}
}