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

AddFlags() public method

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