Interface Parser
access this type via: ws.forms.Parser (provides, requires or uses)
--- semantic variants: urlencoded, multipart
Interface for pluggable HTTP web form encodings.
Functions
bool canParse(char contentType[])
FormData parse(char contentType[], byte payload[])
bool canParse(char contentType[])
Detect whether or not an implementation is able to parse forms of this content type.
FormData parse(char contentType[], byte payload[])
Parse the given form. This function is only called if canParse returns true.