Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
authority_view::encoded_password

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( url_view( "http://jane%2Ddoe:pass@example.com" ).[link url.ref.boost__urls__authority_view.encoded_password `encoded_password`]() == "pass" );
Complexity

Constant.

Exception Safety

Throws nothing.

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

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

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


PrevUpHomeNext