Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext
static_url::authority

(Inherited from url_view_base)

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