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 RecipientReader(CompoundFile cf) { _propStreamReader = new PropertyStreamReader(cf); }
internal AttachmentReader(CompoundFile cf) { _propStreamReader = new PropertyStreamReader(cf); }