Click or drag to resize

IEmailThreadMetadata Interface

Document metadata concerning email threading

Namespace:  Law.EdaIntegration.EmailThreading
Assembly:  Law.EdaIntegration (in Law.EdaIntegration.dll) Version: 7.2
Syntax
C#
public interface IEmailThreadMetadata

The IEmailThreadMetadata type exposes the following members.

Properties
  NameDescription
Public propertyInclusiveReason
If IsInclusive is true, this field indicates why the email is inclusive. If the email message contains message content that is not copied in any of its subsequent replies or forwards, "Message" is displayed. If the email message has attachments that are not included in any of its subsequent replies or forwards, "Attachment" is displayed. If the email message has both new message content and new attachments not included in any of its subsequent replies or forwards, "Message, Attachment" is displayed.

If IsInclusive false, this value is blank.

Public propertyIsInclusive
Flags a minimal set of emails which can be viewed in order to read the email message thread's entire conversation. In the simplest case this will simply be the last message in the thread, since it will quote all the previous messages.
Public propertyIsMessage
Indicates whether the document was recognized as an email message.
Public propertyMessageId
Unique ID that is assigned to each message. If several documents have the same Message ID, it is because they were recognized as separate copies of the same email message.
Public propertyParentId
The immediate parent of the current email in the thread. For the first message, this will be blank. For each subsequent one, it will be the Document Id of the email which it replies to or is a forward of. For attachments, ParentID indicates the email to which it is attached.
Public propertyThreadId
A unique ID assigned to each message thread.
Public propertyThreadIndex
Composed of a base ID, plus a unique number for each message within the thread, and if there are attachments, the letter A plus the unique number for the attachment within the thread. For example, A1, A2, A3 Uses the format: [base ID].[unique number for message].A[unique attachment number]. The base ID is the same as the thread ID without the leading zeros. The thread index for the root message of the thread will just be this. ex: 4.1.2.3.4.5.6.7
Public propertyThreadSize
The total number of unique messages in the thread.
Public propertyThreadSort
A sort order which follows the chain of conversation, from first message to most recent. If a conversation splits into multiple branches, ThreadSort will keep each of the branches together.
Top
See Also