![]() |
Home | Libraries | People | FAQ | More |
Set the userinfo.
static_url& set_userinfo( core::string_view s);
The userinfo is set to the given string, which may contain percent-escapes. Any special or reserved characters in the string are automatically percent-encoded. The effects on the user and password depend on the presence of a colon (':') in the string:
has_password
returns true.
Otherwise,
has_password
returns false.
The interpretation of the userinfo as individual user and password components is scheme-dependent. Transmitting passwords in URLs is deprecated.
assert( url( "http://example.com" ).[link url.ref.boost__urls__static_url.set_userinfo `set_userinfo`]( "user:pass" ).[link url.ref.boost__urls__static_url.encoded_user `encoded_user`]() == "user" );
Linear in this->size() + s.size()
.
Strong guarantee. Calls to allocate may throw.
Name |
Description |
---|---|
|
The string to set. |
[link url.ref.boost__urls__static_url.userinfo `userinfo`] = [ [ [link url.ref.boost__urls__static_url.user `user`] ] [ ':' [link url.ref.boost__urls__static_url.password `password`] ] ] [link url.ref.boost__urls__static_url.user `user`] = *( unreserved / pct-encoded / sub-delims ) [link url.ref.boost__urls__static_url.password `password`] = *( unreserved / pct-encoded / sub-delims / ":" )
remove_userinfo
, /root/project/libs/url/include/boost/url/static_url.hpp