An exception that's thrown if parsing multipart/form-data fails due to invalid formatting or unexpected characters. This is a sub-class of the HttpStatusException, with each multipart exception being a BAD_REQUEST.
A simple linear parser for multipart/form-data encoded content. Reads a series of elements separated by a given boundary. An exception is thrown if the given content doesn't conform to standard multipart format.
Reads a request's body as multipart/form-data encoded elements.
A single element that's part of a multipart/form-data body.
A multipart/form-data body containing multiple elements, and some helper methods for those elements.
The maximum number of parts to read in a multipart/form-data body. This is declared as a safety measure to avoid infinite reading of malicious or corrupted payloads.
Defines data structures and parsing methods for dealing with multipart encoded request bodies.