internal MsgParser(string filePath)
        {
            CompoundFile compoundFile = new CompoundFile(filePath);

            _namedPropertyParser = new NamedPropertyParser(compoundFile);
            _propStreamReader    = new PropertyStreamReader(compoundFile);
            _recipientReader     = new RecipientReader(compoundFile);
            _attachmentReader    = new AttachmentReader(compoundFile);
        }
Esempio n. 2
0
 internal NamedPropertyMapper(NamedPropertyParser parser)
 {
     _propParser = parser;
 }