scheme_id

Return the scheme

Synopsis

scheme
scheme_id() const noexcept;

Declared in file <include/boost/url/url_view_base.hpp> on line 424

Defined in file <src/url_view_base.cpp> on line 134

Description

This function returns a value which depends on the scheme in the url:

  • If the scheme is a well-known scheme, corresponding value from the enumeration urls::scheme is returned.

  • If a scheme is present but is not a well-known scheme, the value returned is urls::scheme::unknown.

  • Otherwise, if the scheme is absent the value returned is urls::scheme::none.

Example

assert( url_view( "wss://www.example.com/crypto.cgi" ).scheme_id() == scheme::wss );

Complexity

Constant.

Exception Safety

Throws nothing.

BNF

URI             = scheme ":" hier-part [ "?" query ] [ "#" fragment ]

absolute-URI    = scheme ":" hier-part [ "?" query ]

scheme          = ALPHA *( ALPHA / DIGIT / "+" / "-" / "." )

Specification