![]() |
Home | Libraries | People | FAQ | More |
(Inherited from params_encoded_base
)
Return the query corresponding to these params.
pct_string_view buffer() const;
This function returns the query string referenced by the container. The returned string may contain percent escapes.
assert( url_view( "?first=John&last=Doe" ).encoded_params().[link url.ref.boost__urls__params_encoded_view.buffer `buffer`]() == "first=John&last=Doe" );
Constant.
Throws nothing.
query-params = query-param *( "&" query-param ) query-param = key [ "=" value ] key = *qpchar value = *( qpchar / "=" )