class Core::Portable::HTTP::FormReader

#include <corewebserver.h>

class FormReader
{
public:
    // methods

    const KeyValueList* readForm(IO::Stream& stream, int64 totalLength);

    bool readMultipart(
        IFormDataReceiver& receiver,
        IO::Stream& stream,
        int64 totalLength
    );
};