MessagingStoreContent Class

Messaging store content. Slack exports, Teams exports, Skype exports, etc. are examples of messaging store (container formats).

Definition

Namespace: OpenDiscoverSDK.Interfaces.Content
Assembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2026.2.6.0 (2026.02.06)
C#
[DataContractAttribute]
public class MessagingStoreContent : DocumentContent
Inheritance
Object    DocumentContent    MessagingStoreContent

Remarks

This class returns the internal folder hierarchy of a mail store (if defined and supported by the format) and the count of messages contained in the mail store. To extract the email messages contained by the mail store see interface method GetNextMessage.

Constructors

MessagingStoreContent Default constructor.
MessagingStoreContent(IdResult) Constructor.

Properties

Attributes Document attributes. See DocumentAttributes for an enumeration of supported attributes.
(Inherited from DocumentContent)
ChildDocuments Child documents (attachments/embedded items). See remarks for the special cases of archives (.7z, zip, etc), media images, and mail stores (.pst, .ost, .mbox, etc.).
(Inherited from DocumentContent)
CustomMetadata Contains custom (user-defined) document metadata as a dictionary of metadata field names as keys and metadata field data as corresponding values.
(Inherited from DocumentContent)
EntityExtractionResult Document entity item extraction result.
(Inherited from DocumentContent)
ErrorMessage Gets or sets an error message associated with Result. This property is only set when Result is not set to Ok.
(Inherited from DocumentContent)
ErrorStackTrace Error (exception) stack trace associated with ErrorMessage. This property is only set when Result is not Ok and if an internal exception was caught.
(Inherited from DocumentContent)
ExtractedText Extracted text, see remarks for limitations.
(Inherited from DocumentContent)
FileEntropy Shannon entropy of the document's bytes.
(Inherited from DocumentContent)
FormatId Document format identification result from prior file identification (this object value was an input to content extractor factory and stored here for convenience).
(Inherited from DocumentContent)
HyperLinks Document hyperlinks.
(Inherited from DocumentContent)
IsEmailType If true, this document is an email document. This DocumentContent object should be cast to a EmailDocumentContent to get additional email document specific properties.
(Inherited from DocumentContent)
IsEncrypted Document is encrypted if this property is true.
(Inherited from DocumentContent)
IsHtmlType If true, document is an HTML document. This DocumentContent object should be cast to a HtmlDocumentContent to get additional HTML document specific properties.
(Inherited from DocumentContent)
IsPdfType If true, document is an PDF document. This DocumentContent object should be cast to a PdfDocumentContent to get additional PDF document specific properties.
(Inherited from DocumentContent)
LanguageIdResults Extracted text language identification results.
(Inherited from DocumentContent)
MD5BinaryHash MD5 binary document hash (hash of all document bytes).
(Inherited from DocumentContent)
MD5ContentHash MD5 content hash is a proprietary hash on only the content of a document file format.
(Inherited from DocumentContent)
MessageCount The total mail store email message count.
Metadata Contains standard (non-user-defined) document metadata as a dictionary of metadata field names as keys and metadata field data as corresponding values.
(Inherited from DocumentContent)
Password The password found to decrypt the document by cycling through supplied password list.
(Inherited from DocumentContent)
Result Gets or sets the result of the content extraction. Check this value to see if content extraction was successful.
(Inherited from DocumentContent)
Root Mailstore root folder (only defined for mail containers that have internal folder structures. Not set for MBOX mail stores).
SHA1BinaryHash SHA-1 binary document hash (hash of all document bytes).
(Inherited from DocumentContent)
SHA1ContentHash SHA-1 content hash is a proprietary hash on only the content part of document file format.
(Inherited from DocumentContent)
SHA256BinaryHash SHA-256 binary document hash (hash of all document bytes).
(Inherited from DocumentContent)
SHA256ContentHash SHA-256 content hash is a proprietary hash on only the content part of document file format.
(Inherited from DocumentContent)
TextSourceType Gets or sets the method of the acquired document text (if any).
(Inherited from DocumentContent)

Methods

EqualsDetermines whether the specified object is equal to the current object.
(Inherited from Object)
GetHashCodeServes as the default hash function.
(Inherited from Object)
GetTypeGets the Type of the current instance.
(Inherited from Object)
ToStringReturns a string that represents the current object.
(Inherited from Object)

See Also