| 131 | } |
| 132 | |
| 133 | void HttpApiRequest::DecodeParams() |
| 134 | { |
| 135 | if (!m_Url) { |
| 136 | DecodeUrl(); |
| 137 | } |
| 138 | m_Params = HttpUtility::FetchRequestParameters(m_Url, body()); |
| 139 | } |
| 140 | |
| 141 | template<bool isRequest, typename Body, typename StreamVariant> |
| 142 | OutgoingHttpMessage<isRequest, Body, StreamVariant>::OutgoingHttpMessage(StreamVariant stream) |
no outgoing calls
no test coverage detected