boost::urls::url_view_base::has_password

Return true if a password is present

Synopsis

Declared in <include/boost/url/url_view_base.hpp>

bool
has_password() const noexcept;

Description

This function returns true if the userinfo is present and contains a password.

assert( url_view( "http://jane%2Ddoe:pass@example.com" ).has_password() );

Constant.

Throws nothing.

userinfo = user [ ":" [ password ] ] user = *( unreserved / pct-encoded / sub-delims ) password = *( unreserved / pct-encoded / sub-delims / ":" )
  • 3.2.1. User Information (rfc3986)
  • See Also

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

    Created with MrDocs