Return true if a userinfo is present
Synopsis
Declared in <boost/url/url_view_base.hpp>
bool
has_userinfo() const noexcept;
Description
This function returns true if this contains a userinfo.
Example
assert( url_view( "http://jane%2Ddoe:pass@example.com" ).has_userinfo() );
Complexity
Constant.
Exception Safety
Throws nothing.
BNF
userinfo = user [ ":" [ password ] ]
authority = [ userinfo "@" ] host [ ":" port ]
Return Value
true
if the userinfo is present.
See Also
has_password
, encoded_password
, encoded_user
, encoded_userinfo
, password
, user
, userinfo
.
Created with MrDocs