Interface IMailThread
Interface that represents an email conversation.
Namespace: SociallyDistant.Core.Social
Assembly: SociallyDistant.Framework.dll
Syntax
public interface IMailThread
Properties
Count
Gets the number of messages in the thread.
Declaration
int Count { get; }
Property Value
Type | Description |
---|---|
int |
Methods
GetMessagesInThread()
Gets a list of all messages in this thread.
Declaration
IEnumerable<IMailMessage> GetMessagesInThread()
Returns
Type | Description |
---|---|
IEnumerable<IMailMessage> | A list of IMailMessage instances representing emails in the thread. |