Return the complete authority

Synopsis

core::string_view
buffer() const noexcept;

Description

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

Example

assert( parse_authority( "www.example.com" ).value().buffer() == "www.example.com" );

BNF

authority   = [ userinfo "@" ] host [ ":" port ]

Exception Safety

Throws nothing.

Specification

Return Value

The complete authority

Created with MrDocs