Get string from the current HTTP request
| 78 | |
| 79 | //! Get string from the current HTTP request |
| 80 | std::string string() const { std::stringstream ss; ss << *this; return ss.str(); } |
| 81 | |
| 82 | //! Clear the HTTP request cache |
| 83 | HTTPRequest& Clear(); |
nothing calls this directly
no outgoing calls
no test coverage detected