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, string value, StoreProcedures procedure ) : ImapResponse
set SequenceSet The sequence set representing the targeted messages, e.g. "1"; "1,2"; "2:4".
value string The keywords to add or remove.
procedure StoreProcedures The procedure, whether to add or remove the flags.
return ImapResponse
        public ImapResponse StoreSilent(SequenceSet set, string value, StoreProcedures procedure)
        {
            var reader = StoreInternal(set, value, procedure, "FLAGS.SILENT");
            var response = new ImapResponse();
            response.Parse(reader);
            return response;
        }

Same methods

ImapClient::StoreSilent ( SequenceSet set, MessageFlags flags, StoreProcedures procedure ) : ImapResponse