HttpParams Class Reference
#include <HttpParams.h>
Inheritance diagram for HttpParams:
Collaboration diagram for HttpParams:
Public Types | |
typedef bool(* | comparator) (const String &, const String &) |
Public Member Functions | |
HttpParams ()=default | |
HttpParams (const HttpParams ¶ms) | |
HttpParams (String query) | |
void | parseQuery (char *query) |
Called from URL class to process query section of a URI. More... | |
String | toString () const |
Return full escaped content for incorporation into a URI. More... | |
operator String () const | |
HttpParams & | operator= (const HttpParams ¶ms) |
size_t | printTo (Print &p) const override |
void | debugPrintTo (Print &p) const |
Printable output for debugging. More... | |
unsigned int | count () const |
const String & | keyAt (unsigned int idx) const |
String & | keyAt (unsigned int idx) |
const String & | valueAt (unsigned int idx) const |
String & | valueAt (unsigned int idx) |
const String & | operator[] (const String &key) const |
String & | operator[] (const String &key) |
void | allocate (unsigned int newSize) |
int | indexOf (const String &key) const |
bool | contains (const String &key) const |
void | removeAt (unsigned index) |
void | remove (const String &key) |
void | clear () |
void | setMultiple (const HashMap< String, String > &map) |
void | setNullValue (const String &nullv) |
Protected Attributes | |
String ** | keys |
String ** | values |
String | nil |
uint16_t | currentIndex |
uint16_t | size |
comparator | cb_comparator |
Detailed Description
- Todo:
- values stored in escaped form, unescape return value and escape provided values. Revise HttpBodyParser.cpp as it will no longer do this job.
Member Typedef Documentation
◆ comparator
Constructor & Destructor Documentation
◆ HttpParams() [1/3]
|
default |
◆ HttpParams() [2/3]
|
inline |
◆ HttpParams() [3/3]
|
inline |
Member Function Documentation
◆ allocate()
◆ clear()
◆ contains()
◆ count()
◆ debugPrintTo()
◆ indexOf()
◆ keyAt() [1/2]
◆ keyAt() [2/2]
◆ operator String()
|
inline |
◆ operator=()
|
inline |
◆ operator[]() [1/2]
◆ operator[]() [2/2]
◆ parseQuery()
void HttpParams::parseQuery | ( | char * | query | ) |
Called from URL class to process query section of a URI.
- Parameters
-
query extracted from URI, with or without '?' prefix
- Return values
-
bool true on success, false if parsing failed
- Note
- query string is modified by this call
◆ printTo()
◆ remove()
◆ removeAt()
◆ setMultiple()
◆ setNullValue()
◆ toString()
String HttpParams::toString | ( | ) | const |
Return full escaped content for incorporation into a URI.
◆ valueAt() [1/2]
◆ valueAt() [2/2]
Member Data Documentation
◆ cb_comparator
|
protectedinherited |
◆ currentIndex
◆ keys
◆ nil
◆ size
◆ values
The documentation for this class was generated from the following file: