Return the complete authority
string_view
buffer() noexcept;
Declared in file <boost/url/authority_view.hpp> at line 253
This function returns the authority as a percent-encoded string.
assert( parse_authority( "www.example.com" ).value().buffer() == "www.example.com" );
authority = [ userinfo "@" ] host [ ":" port ]
Throws nothing.