template<typename T>
struct restincurl::InDataHandler< T >
Template implementation for input data to curl during a request.
This handler deals with the data received from the HTTP server during a request. This implementation will typically use T=std::string and just store the received data in a string. For json/XML payloads that's probably all you need. But if you receive binary data, you may want to use a container like std::vector or std::deque in stead.
Definition at line 405 of file restincurl.h.