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); }
internal NamedPropertyMapper(NamedPropertyParser parser) { _propParser = parser; }