[#boost-urls-url_view_base-encoded_target] = xref:boost.adoc[boost]::xref:boost/urls.adoc[urls]::xref:boost/urls/url_view_base.adoc[url_view_base]::encoded_target :relfileprefix: ../../../ :mrdocs: Return the target == Synopsis Declared in `<https://www.github.com/boostorg/url/blob/develop/include/boost/url/url_view_base.hpp#L2401[boost/url/url_view_base.hpp]>` [source,cpp,subs="verbatim,replacements,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 * https://datatracker.ietf.org/doc/html/rfc3986#section-3.3[] * https://datatracker.ietf.org/doc/html/rfc3986#section-3.4[] == Return Value The target portion of the url. == See Also xref:boost/urls/url_view_base/encoded_origin.adoc[`encoded_origin`], xref:boost/urls/url_view_base/encoded_resource.adoc[`encoded_resource`]. [.small]#Created with https://www.mrdocs.com[MrDocs]#