Perl Diver 2.31
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

MIME::Parser::Results

Name MIME::Parser::Results
Version
Located at /usr/local/share/perl5
File /usr/local/share/perl5/MIME/Parser/Results.pm
Is Core No
Search CPAN for this module MIME::Parser::Results
Documentation MIME::Parser::Results
Module Details MIME::Parser::Results

NAME

MIME::Parser::Results - results of the last entity parsed


SYNOPSIS

Before reading further, you should see the MIME::Parser manpage to make sure that you understand where this module fits into the grand scheme of things. Go on, do it now. I'll wait.

Ready? Ok...

   ### Do parse, get results:
   my $entity = eval { $parser->parse(\*STDIN); };
   my $results  = $parser->results;
   ### Get all messages logged:
   @msgs = $results->msgs;
   ### Get messages of specific types (also tests if there were problems):
   $had_errors   = $results->errors;
   $had_warnings = $results->warnings;
   ### Get outermost header:
   $top_head  = $results->top_head;


DESCRIPTION

Results from the last MIME::Parser parse.


PUBLIC INTERFACE

new
Constructor.

msgs
Instance method. Return all messages that we logged, in order. Every message is a string beginning with its type followed by ": "; the current types are debug, warning, and error.

errors
Instance method. Return all error messages that we logged, in order. A convenience front-end onto msgs().

warnings
Instance method. Return all warning messages that we logged, in order. A convenience front-end onto msgs().

top_head
Instance method. Return the topmost header, if we were able to read it. This may be useful if the parse fails.


SEE ALSO

the MIME::Tools manpage, the MIME::Parser manpage


AUTHOR

Eryq (eryq@zeegee.com), ZeeGee Software Inc (http://www.zeegee.com).

All rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself.

Perl Diver brought to you by ScriptSolutions.com © 1997- 2024