Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
url::encoded_userinfo

Return the userinfo.

Synopsis
pct_string_view
encoded_userinfo() const;
Description

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

Example
assert( [link url.ref.boost__urls__url_view_base.url_view `url_view`]( "http://jane%2Ddoe:pass@example.com" ).[link url.ref.boost__urls__url.encoded_userinfo `encoded_userinfo`]() == "jane%2Ddoe:pass" );
Complexity

Constant.

Exception Safety

Throws nothing

BNF
[link url.ref.boost__urls__url.userinfo `userinfo`]    = [link url.ref.boost__urls__url.user `user`] [ ":" [ [link url.ref.boost__urls__url.password `password`] ] ]

[link url.ref.boost__urls__url.authority `authority`]   = [ [link url.ref.boost__urls__url.userinfo `userinfo`] "@" ] [link url.ref.boost__urls__url.host `host`] [ ":" [link url.ref.boost__urls__url.port `port`] ]
Specification
See Also

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


PrevUpHomeNext