ActiveUp.Net.Mail.Mailbox.SetFlags C# (CSharp) Метод

SetFlags() публичный Метод

Sets the specified flags for the message.
public SetFlags ( int messageOrdinal, IFlagCollection flags ) : string
messageOrdinal int The message's ordinal position.
flags IFlagCollection Flags to be stored for the message.
Результат string
        public string SetFlags(int messageOrdinal, IFlagCollection flags)
		{
            return this.SourceClient.Command("store " + messageOrdinal.ToString() + " flags " + ((FlagCollection)flags).Merged);
		}