Crystalbyte.Equinox.Imap.ImapClient.Store C# (CSharp) Method

Store() public method

The STORE command alters data associated with a message in the mailbox. http://tools.ietf.org/html/rfc2060#section-6.4.6
public Store ( SequenceSet set, MessageFlags flags, StoreProcedures procedure ) : StoreImapResponse
set SequenceSet The sequence set representing the targeted messages, e.g. "1"; "1,2"; "2:4".
flags MessageFlags The flags to add or remove.
procedure StoreProcedures The procedure, whether to add or remove the flags.
return StoreImapResponse
        public StoreImapResponse Store(SequenceSet set, MessageFlags flags, StoreProcedures procedure)
        {
            var value = flags.ToMimeFormat();
            return Store(set, value, procedure);
        }

Same methods

ImapClient::Store ( SequenceSet set, string value, StoreProcedures procedure ) : StoreImapResponse