ActiveUp.Net.Mail.Mailbox.RemoveFlags C# (CSharp) Method

RemoveFlags() public method

Removes the specified flags from the message.
public RemoveFlags ( int messageOrdinal, IFlagCollection flags ) : string
messageOrdinal int The message's ordinal position.
flags IFlagCollection Flags to be removed from the message.
return string
        public string RemoveFlags(int messageOrdinal, IFlagCollection flags)
		{
            return this.SourceClient.Command("store " + messageOrdinal.ToString() + " -flags " + ((FlagCollection)flags).Merged);
		}