Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
url_view::authority

Return the authority.

Synopsis
authority_view
authority() const;
Description

This function returns the authority as an authority_view.

Example
authority_view a = url_view( "https://www.example.com:8080/index.htm" ).authority();
Complexity

Constant.

Exception Safety

Throws nothing.

BNF
authority   = [ userinfo "@" ] host [ ":" port ]
Specification
See Also

encoded_authority, has_authority.


PrevUpHomeNext