MimeMultipartTransformer constructor

MimeMultipartTransformer(
  1. String boundary
)

Construct a new MIME multipart parser with the boundary boundary. The boundary should be as specified in the content type parameter, that is without the -- prefix.

Implementation

MimeMultipartTransformer(String boundary)
    : _boundary = _getBoundary(boundary);