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 a snapshot of the develop branch, built from commit f5a2dc2871.
PrevUpHomeNext
static_url::encoded_authority

(Inherited from url_view_base)

Return the authority.

Synopsis
pct_string_view
encoded_authority() const;
Description

If present, this function returns a string representing the authority (which may be empty). Otherwise it returns an empty string. The returned string may contain percent escapes.

Example
assert( url_view( "file://Network%20Drive/My%2DFiles" ).encoded_authority() == "Network%20Drive" );
Complexity

Constant.

Exception Safety

Throws nothing.

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

authority, has_authority.


PrevUpHomeNext