| Mojolicious documentation | view source | Contained in the Mojolicious distribution. |
Mojo::Content::MultiPart - HTTP 1.1 MultiPart Content Container
use Mojo::Content::MultiPart;
my $content = Mojo::Content::MultiPart->new;
$content->parse('Content-Type: multipart/mixed; boundary=---foobar');
my $part = $content->parts->[4];
Mojo::Content::MultiPart is a container for HTTP 1.1 multipart content as described in RFC 2616.
Mojo::Content::MultiPart inherits all attributes from Mojo::Content and implements the following new ones.
partsmy $parts = $content->parts;
Content parts embedded in this multipart content, usually Mojo::Content::Single objects.
Mojo::Content::MultiPart inherits all methods from Mojo::Content and implements the following new ones.
body_contains my $found = $content->body_contains('foobarbaz');
Check if content parts contain a specific string.
body_sizemy $size = $content->body_size;
Content size in bytes.
build_boundarymy $boundary = $content->build_boundary;
Generate a suitable boundary for content.
get_body_chunkmy $chunk = $content->get_body_chunk(0);
Get a chunk of content starting from a specfic position.
parse $content = $content->parse('Content-Type: multipart/mixed');
Parse content chunk.
Mojolicious, Mojolicious::Guides, http://mojolicio.us.
| Mojolicious documentation | view source | Contained in the Mojolicious distribution. |