In a large number of places in the documentation response.set_body() is used. Mainly in the router. For example:
router<route_params> r;
r.get( "/hello",
[]( route_params& p )
{
p.res.status( status::ok );
p.res.set_body( "Hello, world!" );
return route_done;
} );
This method no longer exists.
In a large number of places in the documentation response.set_body() is used. Mainly in the router. For example:
This method no longer exists.