Constructs an encoding_opts object with the specified options.
<boost/url/encoding_opts.hpp>
constexpr
encoding_opts(
bool const space_as_plus = false,
bool const lower_case = false,
bool const disallow_null = false) noexcept;
| Name | Description |
|---|---|
| space_as_plus | If true, spaces will be encoded as plus signs. |
| lower_case | If true, hexadecimal digits will be emitted as lower case. |
| disallow_null | If true, null characters will not be allowed. |