:relfileprefix: ../../../ [#boost-urls-params_encoded_ref-url] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/params_encoded_ref.adoc[pass:[params_encoded_ref]]::url Return the referenced url == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/urls/url_base.adoc[url_base]& url() const noexcept; ---- == Description This function returns the url referenced by the view. === Example [,cpp] ---- url u( "?key=value" ); assert( &u.encoded_params().url() == &u ); ---- === Exception Safety [,cpp] ---- Throws nothing. ----