|
Barracuda Application Server C/C++ Reference
Native APIs, integration guides, and platform interfaces
|
The HttpParameterIterator is used for iterating through the form elements parsed by the HttpServer object.
C++ Example:
C Example: See HttpParameter.
#include <HttpServer.h>
Public Member Functions | |
| HttpParameterIterator (HttpRequest *req) | |
| This HttpParameterIterator constructor takes a HttpRequest object as argument. More... | |
| HttpParameterIterator (HttpParameter *param) | |
| This HttpParameterIterator constructor takes a HttpParameter object as argument. More... | |
| void | nextElement () |
| Advance to the next element. More... | |
| bool | hasMoreElements () |
| Returns true if more elements. More... | |
| const char * | getName () const |
| Return the borrowed current name, or NULL at the end. More... | |
| const char * | getValue () const |
| Return the borrowed current value, or NULL at the end. More... | |
| const char * HttpParameterIterator::getName | ( | ) | const |
Return the borrowed current name, or NULL at the end.
| const char * HttpParameterIterator::getValue | ( | ) | const |
Return the borrowed current value, or NULL at the end.