:relfileprefix: ../../../ [#244FCAE26FC7B78AD1F9E5FA19A2DEBA6AF23213] = Function url_base::encoded_params pass:v,q[Return the query as a container of parameters] == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/urls/params_encoded_view.adoc[params_encoded_view] encoded_params() const noexcept; ---- == Description pass:v,q[This function returns a bidirectional] pass:v,q[view of key/value pairs over the query.] pass:v,q[The returned view references the same] pass:v,q[underlying character buffer; ownership] pass:v,q[is not transferred.] pass:v,q[Strings returned when iterating the] pass:v,q[range may contain percent escapes.] === Example [,cpp] ---- params_encoded_view pv = url_view( "/sql?id=42&name=jane%2Ddoe&page+size=20" ).encoded_params(); ---- === Complexity pass:v,q[Constant.] === Exception Safety pass:v,q[Throws nothing.] === Specification * link:https://datatracker.ietf.org/doc/html/rfc3986#section-3.4[3.4. Query (rfc3986)] === BNF [,cpp] ---- query = *( pchar / "/" / "?" ) query-param = key [ "=" value ] query-params = [ query-param ] *( "&" query-param ) ---- === Specification * pass:v,q[://en.wikipedia.org/wiki/Query_string"] pass:v,q[>Query string (Wikipedia)] == Return Value * `params_encoded_view`