#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. | |
| virtual decaf::net::URLDecoder::~URLDecoder | ( | ) | [inline, virtual] |
| 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 $%"
| value | - string The encoded string. |
1.6.1