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

StoreSilent() 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 StoreSilent ( SequenceSet set, MessageFlags flags, StoreProcedures procedure ) : ImapResponse
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 ImapResponse
        public ImapResponse StoreSilent(SequenceSet set, MessageFlags flags, StoreProcedures procedure)
        {
            var value = flags.ToMimeFormat();
            return StoreSilent(set, value, procedure);
        }

Same methods

ImapClient::StoreSilent ( SequenceSet set, string value, StoreProcedures procedure ) : ImapResponse