:relfileprefix: ../../../ [#boost-urls-params_ref-url] == xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/params_ref.adoc[pass:[params_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. [,cpp] ---- url u( "?key=value" ); assert( &u.segments().url() == &u ); ---- [,cpp] ---- Throws nothing. ----