AddMessageFlags Method
Adds the specified flags to the messages specified by MessageSet .
Syntax
[VB.NET] Public Sub AddMessageFlags(ByVal Flags As String)
[C#] public void AddMessageFlags(string flags);
Remarks
This method adds the specified flags to the messages specified by the MessageSet property. The format of the flags is specified by the IMAP RFCs.
Examples of possible flag values are server dependent, but can include:
\Deleted | Mark a message as deleted (for removal by later ExpungeMailbox). |
\Seen | Mark a message as read. |
\Answered | Mark a message as answered. |
\Flagged | Mark a message as flagged. |
\Draft | Mark a message as being incomplete (under composition). |
IMAPControl.MessageSet = "1" IMAPControl.AddMessageFlags("\Deleted")NOTE: This method has a corresponding asynchronous version (AddMessageFlagsAsync) for use in the Xamarin environment.