Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
static_url_base::encoded_password

(Inherited from url_view_base)

Return the password.

Synopsis
pct_string_view
encoded_password() const;
Description

This function returns the password portion of the userinfo as a percent-encoded string.

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__static_url_base.encoded_password `encoded_password`]() == "pass" );
Complexity

Constant.

Exception Safety

Throws nothing.

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

[link url.ref.boost__urls__static_url_base.user `user`]        = *( unreserved / pct-encoded / sub-delims )
[link url.ref.boost__urls__static_url_base.password `password`]    = *( unreserved / pct-encoded / sub-delims / ":" )
Specification
See Also

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


PrevUpHomeNext