activemq-cpp-3.6.0
decaf::net::URLDecoder Class Reference

#include <src/main/decaf/net/URLDecoder.h>

Public Member Functions

virtual ~URLDecoder ()

Static Public Member Functions

static std::string decode (const std::string &value)
 Decodes the string argument which is assumed to be encoded in the x-www-form-urlencoded MIME content type.

Constructor & Destructor Documentation

virtual decaf::net::URLDecoder::~URLDecoder ( )
inlinevirtual

Member Function Documentation

static std::string decaf::net::URLDecoder::decode ( const std::string &  value)
static

Decodes the string argument which is assumed to be encoded in the x-www-form-urlencoded MIME content type.

'+' will be converted to space, '' and two following hex digit characters are converted to the equivalent byte value. All other characters are passed through unmodified.

e.g. "A+B+C %24%25" -> "A B C $%"

Parameters
value- string The encoded string.
Returns
The decoded version as a string.

The documentation for this class was generated from the following file: