mcorest_api_json_write_finish

Finish writing JSON data to the stream.

For an overview see page mcorest_api_json_write_*

Prototype

 
    MCO_RET mcorest_api_json_write_finish( mcorest_api_json_write_ctx_t *ctx );
     

Arguments

ctx Pointer to the JSON write context structure

Description

This function finishes writing JSON data to the stream; closes the top-level JSON object and does sanity checks. No further writes to this JSON context are allowed.

Return Codes

MCO_S_OK = 0 Success
MCO_E_REST_* Any of the Web Services Error Codes

Example

 
    static MCO_RET get_stream_print_json_object(mcohs_request_h req)
    {
        mcorest_api_json_write_ctx_t jctx;
        mcorest_api_stream_t jstream;
        ...
         
        mcorest_api_status_ok(req);
        mcorest_api_stream_with_request(req, &jstream);
        mcorest_api_json_write_start(&jstream, &jctx);
        ...
        mcorest_api_json_write_finish(&jctx);
        return MCO_S_OK;
    }
     

Files

Header file:
mcorestapi.h
Source file:
jsonwr.c
Library:
libmcorest.a