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 master branch, built from commit c6a8213e9b.
PrevUpHomeNext
url_base::has_userinfo

(Inherited from url_view_base)

Return true if a userinfo is present.

Synopsis
bool
has_userinfo() const;
Description

This function returns true if this contains a userinfo.

Example
assert( url_view( "http://jane%2Ddoe:pass@example.com" ).has_userinfo() );
Complexity

Constant.

Exception Safety

Throws nothing.

BNF
userinfo    = user [ ":" [ password ] ]

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

has_password, encoded_password, encoded_user, encoded_userinfo, password, user, userinfo.


PrevUpHomeNext