[#9257747A20FA0B87B73FF4C8046D6C5414EEF442]

Function authority_view:: has_password

Return true if a password is present

Synopsis

            bool
has_password() const noexcept;
        

Description

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

Example

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

Complexity

Constant.

Exception Safety

Throws nothing.

BNF

userinfo = user [ ":" [ password ] ] user = *( unreserved / pct-encoded / sub-delims ) password = *( unreserved / pct-encoded / sub-delims / ":" )

Specification

  • 3.2.1. User Information (rfc3986)