Skip to content
Sander edited this page Feb 1, 2016 · 7 revisions

ArduinoHttpServer

StreamHttpRequest

Initiate parsing:

  • bool readRequest()

Request information:

  • const ArduinoHttpServer::HttpResource& getResource() const
  • const MethodEnum getMethod() const
  • const String& getVersion() const

Field information:

  • const String& getContentType() const
  • const int getContentLength() const

Body retrieval:

  • const char* const getBody() const

State retrieval:

  • const String& getErrorDescrition()
  • Stream& getStream()

Clone this wiki locally