Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext
url_view_base::buffer

Return the URL string.

Synopsis
string_view
buffer() const;
Description

This function returns the entire URL, which main contain percent escapes.

Example
assert( url_view( "http://www.example.com" ).buffer() == "http://www.example.com" );
Complexity

Constant.

Exception Safety

Throws nothing.


PrevUpHomeNext