A class representing an URI query parameter.
More...
#include <luciad/net/UriQueryParameter.h>
A class representing an URI query parameter.
UriQueryParameter instances are immutable.
- Since
- 2023.0
◆ UriQueryParameter()
luciad::UriQueryParameter::UriQueryParameter |
( |
std::string |
key, |
|
|
std::string |
value |
|
) |
| |
Creates an URI query parameter with the given key and value.
- Parameters
-
key | the query parameter key. |
value | the query parameter value. |
◆ getKey()
const std::string & luciad::UriQueryParameter::getKey |
( |
| ) |
const |
Returns the key of this URI query parameter.
- Returns
- the key of this URI query parameter.
◆ getValue()
const std::string & luciad::UriQueryParameter::getValue |
( |
| ) |
const |
Returns the value of this URI query parameter.
- Returns
- the value of this URI query parameter.
◆ operator!=()
◆ operator==()