:relfileprefix: ../../../ [#boost-urls-url_view_base-encoded_target] = xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/url_view_base.adoc[pass:[url_view_base]]::encoded_target Return the target == Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- xref:boost/urls/pct_string_view.adoc[pct_string_view] encoded_target() const noexcept; ---- == Description This function returns the target, which is the portion of the url that includes only the path and query. The returned string may contain percent escapes. === Example [,cpp] ---- assert( url_view( "http://www.example.com/index.html?query#frag" ).encoded_target() == "/index.html?query" ); ---- === Complexity Constant. === Exception Safety Throws nothing. === Specification * link:https://datatracker.ietf.org/doc/html/rfc3986#section-3.3[3.3. Path (rfc3986)] * link:https://datatracker.ietf.org/doc/html/rfc3986#section-3.4[3.4. Query (rfc3986)] == See Also xref:boost/urls/url_view_base/encoded_origin.adoc[encoded_origin] , xref:boost/urls/url_view_base/encoded_resource.adoc[encoded_resource] .