Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
authority_view::buffer

Return the complete authority.

Synopsis
string_view
buffer() const;
Description

This function returns the authority as a percent-encoded string.

Example
assert( parse_authority( "www.example.com" ).value().encoded_authority() == "www.example.com" );
BNF
authority   = [ userinfo "@" ] host [ ":" port ]
Exception Safety

Throws nothing.

Specification

PrevUpHomeNext