![]() |
Home | Libraries | People | FAQ | More |
Return the password.
pct_string_view encoded_password() const;
This function returns the password portion of the userinfo as a percent-encoded string.
assert( url_view( "http://jane%2Ddoe:pass@example.com" ).[link url.ref.boost__urls__authority_view.encoded_password `encoded_password`]() == "pass" );
Constant.
Throws nothing.
[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 / ":" )
has_password, has_userinfo, encoded_user, encoded_userinfo, password, user, userinfo.