MessageFlagSetAllFlags Property
Gets the entire list of flags as array of strings.

Namespace: MailBee.ImapMail
Assembly: MailBee.NET (in MailBee.NET.dll) Version: 12.4 build 677 for .NET 4.5
Syntax
public string[] AllFlags { get; }

Property Value

Type: String
The array of strings containing all the message flags associated with the given message or folder.
Remarks
In the returned array, system flags are prefixed with "\" character. For instance, the following list can be returned: "\Seen", "\Answered", "$Personal".
Note Note
In C#, "\" character has special meaning. To insert it into string, either duplicate it or prefix the entire string with "@" character.
See Also