gitextract_xbt61gzj/ ├── .gitattributes ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── MsgKit/ │ ├── Address.cs │ ├── Appointment.cs │ ├── Attachments.cs │ ├── Contact.cs │ ├── ContactAssistant.cs │ ├── ContactBusiness.cs │ ├── ContactCommon.cs │ ├── ContactCompanyMain.cs │ ├── ContactHome.cs │ ├── ContactOther.cs │ ├── ContactWork.cs │ ├── ContactYomi.cs │ ├── Converter.cs │ ├── Email.cs │ ├── Enums/ │ │ ├── AddressBookEntryIdType.cs │ │ ├── AddressType.cs │ │ ├── AppointmentState.cs │ │ ├── AttachmentFlags.cs │ │ ├── AttachmentType.cs │ │ ├── MapiAccess.cs │ │ ├── MapiObjectType.cs │ │ ├── MeetingType.cs │ │ ├── MessageClass.cs │ │ ├── MessageEditorFormat.cs │ │ ├── MessageFlags.cs │ │ ├── MessageFormat.cs │ │ ├── MessageIconIndex.cs │ │ ├── MessageImportance.cs │ │ ├── MessagePriority.cs │ │ ├── PostalAddressId.cs │ │ ├── PropertyFlags.cs │ │ ├── PropertyKind.cs │ │ ├── PropertyType.cs │ │ ├── RecipientFlags.cs │ │ ├── RecipientRowAddressType.cs │ │ ├── RecipientRowDisplayType.cs │ │ ├── RecipientType.cs │ │ ├── RecurrencePatternCalendarType.cs │ │ ├── RecurrencePatternFirstDOWDay.cs │ │ ├── RecurrencePatternFrequency.cs │ │ ├── RecurrencePatternPatternType.cs │ │ ├── RecurrencePatternRecurrenceRangeType.cs │ │ ├── StoreSupportMask.cs │ │ ├── TaskAcceptanceState.cs │ │ ├── TaskHistory.cs │ │ ├── TaskMode.cs │ │ ├── TaskMultipleRecipients .cs │ │ ├── TaskOwnership.cs │ │ ├── TaskState.cs │ │ └── TaskStatus.cs │ ├── Exceptions/ │ │ ├── MKAttachment.cs │ │ ├── MKAttachmentExists.cs │ │ ├── MKInvalidProperty.cs │ │ ├── MKMessageSaved.cs │ │ └── MKPropertyNotFound.cs │ ├── Helpers/ │ │ ├── Conversion.cs │ │ ├── Crc32Calculator.cs │ │ ├── EmailAddress.cs │ │ ├── Exception.cs │ │ ├── ExtensionMethods.cs │ │ ├── FileManager.cs │ │ ├── Mapi.cs │ │ ├── MimeType.cs │ │ ├── Stream.cs │ │ └── Strings.cs │ ├── Message.cs │ ├── Mime/ │ │ ├── Decode/ │ │ │ ├── Base64.cs │ │ │ ├── EncodedWord.cs │ │ │ ├── EncodingFinder.cs │ │ │ ├── QuotedPrintable.cs │ │ │ ├── Rfc2231Decoder.cs │ │ │ ├── Rfc2822DateTime.cs │ │ │ ├── SizeParser.cs │ │ │ └── Utility.cs │ │ └── Header/ │ │ ├── ContentTransferEncoding.cs │ │ ├── HeaderExtractor.cs │ │ ├── HeaderFieldParser.cs │ │ ├── MessageHeader.cs │ │ ├── Received.cs │ │ └── RfcMailAddress.cs │ ├── MsgKit.csproj │ ├── MsgKit.snk │ ├── MsgKit.xml │ ├── NamedPropertyMapping.cs │ ├── NamedPropertyTags.cs │ ├── PropertyTags.cs │ ├── Receiving.cs │ ├── ReceivingRepresenting.cs │ ├── Recipient.cs │ ├── Representing.cs │ ├── Rtf/ │ │ ├── Compressor.cs │ │ └── Encapsulator.cs │ ├── Sender.cs │ ├── Streams/ │ │ ├── AttachmentProperties.cs │ │ ├── EmbeddedMessageProperties.cs │ │ ├── EntryStream.cs │ │ ├── GuidStream.cs │ │ ├── NamedProperties.cs │ │ ├── RecipientProperties.cs │ │ ├── StringStream.cs │ │ └── TopLevelProperties.cs │ ├── Structures/ │ │ ├── AddressBookEntryId.cs │ │ ├── CLSID.cs │ │ ├── NamedProperty.cs │ │ ├── OneOffEntryId.cs │ │ ├── Properties.cs │ │ ├── Property.cs │ │ ├── RecipientRow.cs │ │ ├── RecurrencePattern.cs │ │ ├── ReportTag.cs │ │ └── UnsendableRecipients.cs │ ├── Task.cs │ ├── ThreadIndex.cs │ ├── TranslateTags.cs │ ├── app.config │ └── packages.config ├── MsgKit.sln ├── MsgKit.sln.DotSettings ├── MsgKitTestTool/ │ ├── EmailForm.Designer.cs │ ├── EmailForm.cs │ ├── EmailForm.resx │ ├── MsgKitTestTool.csproj │ ├── Program.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Tests.cs │ ├── app.config │ └── packages.config └── README.md